Query

P

Pass-the-reality

In my table I have a field for FirstName and one for LastName. On a Query, I
need to show LastName, FirstName. I tried adding the below to the Query
Field, but it does not come up correctly

Associate: [LastName] And [FirstName]

What do I need to add?
 
D

Dirk Goldgar

Pass-the-reality said:
In my table I have a field for FirstName and one for LastName. On a
Query, I
need to show LastName, FirstName. I tried adding the below to the Query
Field, but it does not come up correctly

Associate: [LastName] And [FirstName]

What do I need to add?


Associate: [LastName] & ", " & [FirstName]
 
Top