Can anyone tell me why this code is not working in the OnFormat code for the detail section of a report?
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me!RippedName Is Null Then
AppName.BackColor = 12632256
Else
End If
End Sub
The debugger is stating that an object is required, and it seems like it is looking for a value and not recognizing the "null" option.
Thanks in advance for your help!
Angela
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me!RippedName Is Null Then
AppName.BackColor = 12632256
Else
End If
End Sub
The debugger is stating that an object is required, and it seems like it is looking for a value and not recognizing the "null" option.
Thanks in advance for your help!
Angela