S
Sue Compelling
Hi All -
My attempt at creating a default value in a form control is coming back as
"invalid use of Null" and I can't figure out what I'm doing wrong.
Private Sub LastName_AfterUpdate()
If IsNull(Me.LastName) Then
Me.Salutation.DefaultValue = ([Title] + " ") & ([FirstName] & " ") +
[LastName]
Else
Me.Salutation.DefaultValue = [OrgTitle]
End If
End Sub
TIA
My attempt at creating a default value in a form control is coming back as
"invalid use of Null" and I can't figure out what I'm doing wrong.
Private Sub LastName_AfterUpdate()
If IsNull(Me.LastName) Then
Me.Salutation.DefaultValue = ([Title] + " ") & ([FirstName] & " ") +
[LastName]
Else
Me.Salutation.DefaultValue = [OrgTitle]
End If
End Sub
TIA