B broberts New member Local time Today, 04:23 Joined Sep 5, 2023 Messages 10 Sep 5, 2023 #21 MajP said: You can simplify it a little to help avoiding errors, since it is always first and last. Code: [FirstName] & " " & [lastName] & IIf(IsNull([BillingLastname]),"(Student)","(Billing)") Click to expand... Thanks, that is easier to read as well.
MajP said: You can simplify it a little to help avoiding errors, since it is always first and last. Code: [FirstName] & " " & [lastName] & IIf(IsNull([BillingLastname]),"(Student)","(Billing)") Click to expand... Thanks, that is easier to read as well.