How do I copy concatenate formula in column

T

TT

I have looked and looked but can not find the right results. I still can not
copy the concatenate formula to on column. I am trying to combine first and
last names for two different columns.
 
S

Sharkbyte

From 2 columns in a table?

[lastname] & ', ' & [firstname] or

[firstname] & ' ' & [lastname]

Sharkbyte
 
K

KARL DEWEY

Access does not use Concatenate but like the folowing --
[FirstName]&" "&[LastName]
 
Top