If condition in a continuous form

M

Maria Joao

I need the form to make visible a label under certain conditions:

If IsNull(Alterações) = False Then
Label35.Visible = True
Else
Label35.Visible = False
End If

The only problem is that the label is visible in all the records that
apppear on the screen, and I want it to become visible only for the records
where the field "Alterações" is not null.

Can you help me with this?

Thanks

Maria Joao
 
G

Gina

try

If Not IsNull(Alterações) ...

put a halt on it and step through the code
Gina
 
A

Andreas

In version 2000 and later, you could try conditional formatting.

Regards,
Andreas
 
Top