I am working on a report where I want to show one of five custom symbols. The symbol that is shown depends on the status of a project. I have this functionality in a form and it reads like this
How do I do the same thing when I am in a report?
Thanks!
PJ
Code:
If lngStatus = 1 Then
Me.imgRed1t.Visible = True
else [i]all the other conditions[/i]
End If
How do I do the same thing when I am in a report?
Thanks!
PJ