Help with Visible Lable

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))
 
D

Douglas J. Steele

Me.lblTitle.Visible = (IsNull(Me.cmbTitle) = True And IsNull(Me.tbSurname) =
False)
 
Top