I have a report in Access with a Preview/Print action this report has a few textboxes, I would like to check if an textbox is empty if so change the textbox background color before it’s Preview/Print.
Text box name = HomeMobile
What event should I use on the report: • Private Sub Report_Load() • Private Sub Report_Open(Cancel As Integer)
Private Sub Report_Open(Cancel As Integer)
If IsNull(Textbox.Value) = True Then
Textbox.BackColor = vbRed
End If
End Sub
Not sure how to approach this. Your help is more than welcome! Thanks