I'm trying to concatenate Last name, First Name, & Middle Initial.
Like: [LName], [FName], [MI].
...but I don't want the period after [MI] to show if there is no [MI].
This is what I have:
=[LName] & ", " & [FName] & " " & [MI] & "."
Isn't there an easy way to specify the "." is optional if [MI] is null? (Without using iif([MI]="","","."))
Thanks!
Like: [LName], [FName], [MI].
...but I don't want the period after [MI] to show if there is no [MI].
This is what I have:
=[LName] & ", " & [FName] & " " & [MI] & "."
Isn't there an easy way to specify the "." is optional if [MI] is null? (Without using iif([MI]="","","."))
Thanks!