sherlocked
Registered User.
- Local time
- Today, 06:56
- Joined
- Sep 22, 2014
- Messages
- 125
Hello experts,
I'm trying to set an unbound text box to display certain text based on whether a checkbox on another open report is true or false.
Below is what I'm trying but I get a "you cannot assign a value to this object" error.
Any idea what I'm doing wrong?
Thanks in advance
I'm trying to set an unbound text box to display certain text based on whether a checkbox on another open report is true or false.
Below is what I'm trying but I get a "you cannot assign a value to this object" error.
Any idea what I'm doing wrong?
Thanks in advance

Code:
Private Sub Report_Open(Cancel As Integer)
If Report_rptNational.chkID = True Then
Me.txtDisplayLabel = "Application Details Report - Identity Cases for the year " & Forms!frmMain.cmboYear
End If
End Sub