D
Dermot
How do I insert a comma between the mames in the following query.
WholeName: [LastName] & " " & [FirstName]
Doesn't work 1:- WholeName: [LastName], & " " & [FirstName].....??
Doesn't work 2:- WholeName: [LastName]","[FirstName]...............????
I have seen some code for concatenating and the code is quite elaborate.
Cna anyone explain to me how I reason the statement out as I type the
statement.....instead of having to continually check code examples?..the
IIF????
FirstNameFirst: IIf([MiddleName],[FirstName] & " " &
[MiddleName],[FirstName]) & IIf([LastName]," " & [LastName],[LastName])
WholeName: [LastName] & " " & [FirstName]
Doesn't work 1:- WholeName: [LastName], & " " & [FirstName].....??
Doesn't work 2:- WholeName: [LastName]","[FirstName]...............????
I have seen some code for concatenating and the code is quite elaborate.
Cna anyone explain to me how I reason the statement out as I type the
statement.....instead of having to continually check code examples?..the
IIF????
FirstNameFirst: IIf([MiddleName],[FirstName] & " " &
[MiddleName],[FirstName]) & IIf([LastName]," " & [LastName],[LastName])