M
Mike C.
Hello All:
I have an Append Query and in one of the fields, it
combines the data of number of fields from the MEMBERS
table (FirstName, LastName, etc.) into one field
(FullName). It is set up now so that when in prints the
PrefixRank, it shows a space between the prefix and the
firstname (i.e. Mr. John Doe). There are some cases where
there will not be a PrefixRank, hence it will still have
an undesirable space before the first name. I know how to
write an IIf statement to rectify this, however what is
the syntax to place it at the beginning of the statement
(i.e. after [MEMBERS].)? The current syntax is below:
FullName: [MEMBERS].[PrefixRank] & " " & [FirstName] & IIf
(IsNull([Middleinitial]),""," " & [middleinitial] & ".")
& " " & [LastName] & IIf(IsNull([suffix]),"",", " &
[suffix]) & IIf(IsNull([Service]),"",", " & [Service])
Any help would be greaty appreciated.
Thanks in advance,
m.
I have an Append Query and in one of the fields, it
combines the data of number of fields from the MEMBERS
table (FirstName, LastName, etc.) into one field
(FullName). It is set up now so that when in prints the
PrefixRank, it shows a space between the prefix and the
firstname (i.e. Mr. John Doe). There are some cases where
there will not be a PrefixRank, hence it will still have
an undesirable space before the first name. I know how to
write an IIf statement to rectify this, however what is
the syntax to place it at the beginning of the statement
(i.e. after [MEMBERS].)? The current syntax is below:
FullName: [MEMBERS].[PrefixRank] & " " & [FirstName] & IIf
(IsNull([Middleinitial]),""," " & [middleinitial] & ".")
& " " & [LastName] & IIf(IsNull([suffix]),"",", " &
[suffix]) & IIf(IsNull([Service]),"",", " & [Service])
Any help would be greaty appreciated.
Thanks in advance,
m.