Help with Visible Lable

  • Thread starter Thread starter Bob Vance
  • Start date Start date
B

Bob Vance

Im wanting Label lblTitle to show if there is no Data in cmbTitle and Data
in tbSurname
Me.lblTitle.Visible = IIf(Me.cmbTitle="" & Me.tbSurname = ? ,False, True))
 
Me.lblTitle.Visible = (IsNull(Me.cmbTitle) = True And IsNull(Me.tbSurname) =
False)
 
Brilliant Douglas, Im getting Close :)

Douglas J. Steele said:
Me.lblTitle.Visible = (IsNull(Me.cmbTitle) = True And IsNull(Me.tbSurname)
= False)
 

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

Similar Threads


Back
Top