B
Billiam
I would like to concatenate a Fullname so that if there is a Preferred name
in the PrefName field, the FirstName field will not be used, AND if there is
not a PrefName field entry, then the FirstNameField is only used.
I am not sure how to do this. The following example does not provide the
PrefName,even if there is one, but still does not solve how to eliminate both
the
FirstName and PrefName fields from being in the FullName Expression...Any
help would be sincerely appreciated!!!
Fullname: [LastName] & ", " & IIf(IsNull([PrefName]),Null) & [FirstName] & "
" & [MidName]
Billiam
in the PrefName field, the FirstName field will not be used, AND if there is
not a PrefName field entry, then the FirstNameField is only used.
I am not sure how to do this. The following example does not provide the
PrefName,even if there is one, but still does not solve how to eliminate both
the
FirstName and PrefName fields from being in the FullName Expression...Any
help would be sincerely appreciated!!!
Fullname: [LastName] & ", " & IIf(IsNull([PrefName]),Null) & [FirstName] & "
" & [MidName]
Billiam