If condition in a continuous form

  • Thread starter Thread starter Maria Joao
  • Start date Start date
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
 
try

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

put a halt on it and step through the code
Gina
 
In version 2000 and later, you could try conditional formatting.

Regards,
Andreas
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top