G
gavin
I have a database of names and addresses and I only want the Title field to
appear on the data input form if there is a value in the Lastname field for
that record. I have been trying out a few variations based on:
Private Sub Form_AfterUpdate()
If Me.Lastname.Value = Isblank Then
Me.Title.Visible = True
Else
Me.Title.Visible = False
End If
End Sub
but it isn't working - at least I am trying though!
Can anyone help?
Regards
appear on the data input form if there is a value in the Lastname field for
that record. I have been trying out a few variations based on:
Private Sub Form_AfterUpdate()
If Me.Lastname.Value = Isblank Then
Me.Title.Visible = True
Else
Me.Title.Visible = False
End If
End Sub
but it isn't working - at least I am trying though!
Can anyone help?
Regards