I am trying to make a label (below) on a form and it works if I leave the FirstName off. I want it to have last and first name.
Private Sub Form_Current()
Me!TabMember.Value = 0
lblName.Caption = IIf(IsNull([LastName]), "", "Member: " & [LastName], [FirstName])
End Sub
I'm sure it's simple but I'm tired today. Thanks Rich
Private Sub Form_Current()
Me!TabMember.Value = 0
lblName.Caption = IIf(IsNull([LastName]), "", "Member: " & [LastName], [FirstName])
End Sub
I'm sure it's simple but I'm tired today. Thanks Rich