WaltLukeIII
Programmer
I have a report that links to a report preview. I want to change one of the text labels in the report based upon a selected choice in the Form.
Walt III
SAElukewl@netscape.net
Walt III
SAElukewl@netscape.net
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Detail_Format(Cancel As Integer, FormatCount as Integer)
If [Forms]![formname].[checkbox1]=True then
textbox.text="La De Da" else
If [Forms]![formname].[checkbox1]=False then
textbox.text="La La La"
End if
End if
End Sub
If Forms!frmOpenForm!chkShow = True Then
Me.txtMyTextBox = "Some Value"
Else
Me.txtMyTextBox = "Other Value"
End If