I have a report that keeps on crashing with 2427 error.
I need a text box (Statutory Books) to be invisible if another field (satstat) = "Yes" (its a lookup text field in the table) or visible if it reads "no" or "partly"
The field definately has Yes / No in it, but for some reason access regards it as empty.
The code I use is
IF [satstat] = "Yes" THEN
[Statutory Books].Visible = False
ELSE
[Statutory Books].Visible = True
END IF
I need a text box (Statutory Books) to be invisible if another field (satstat) = "Yes" (its a lookup text field in the table) or visible if it reads "no" or "partly"
The field definately has Yes / No in it, but for some reason access regards it as empty.
The code I use is
IF [satstat] = "Yes" THEN
[Statutory Books].Visible = False
ELSE
[Statutory Books].Visible = True
END IF