newbie question(s)

B

Brad

I have a first name field and a last name field. I want it to print as
though it were one field with first and last names. IOW, with all the last
names starting one space after the first name, not with all the last names
starting in the same column. Is this possible, or do I have to create
another field with both names? Thanks for any help.

Brad
 
G

Gina

In a queryon the table, top line, put

FullName: [FirstName&" "&[LastName]

in one field and that should do it.
 
D

Duane Hookom

Forgot a "]"
FullName: [FirstName] & " " & [LastName]



--
Duane Hookom
MS Access MVP


Gina said:
In a queryon the table, top line, put

FullName: [FirstName&" "&[LastName]

in one field and that should do it.

Brad said:
I have a first name field and a last name field. I want it to print as
though it were one field with first and last names. IOW, with all the last
names starting one space after the first name, not with all the last names
starting in the same column. Is this possible, or do I have to create
another field with both names? Thanks for any help.

Brad
 
G

Gina

Thanks... must be time to turn in for the night :cool:


Duane Hookom said:
Forgot a "]"
FullName: [FirstName] & " " & [LastName]



--
Duane Hookom
MS Access MVP


Gina said:
In a queryon the table, top line, put

FullName: [FirstName&" "&[LastName]

in one field and that should do it.

Brad said:
I have a first name field and a last name field. I want it to print as
though it were one field with first and last names. IOW, with all the last
names starting one space after the first name, not with all the last names
starting in the same column. Is this possible, or do I have to create
another field with both names? Thanks for any help.

Brad
 
B

Brad

Gina and Duane,

Thanks very much. It worked, of course, + I learned something new about
Access. I just started using it a few days ago, so I'll be following up
soon with more questions.

Brad

Duane Hookom said:
Forgot a "]"
FullName: [FirstName] & " " & [LastName]



--
Duane Hookom
MS Access MVP


Gina said:
In a queryon the table, top line, put

FullName: [FirstName&" "&[LastName]

in one field and that should do it.

Brad said:
I have a first name field and a last name field. I want it to print as
though it were one field with first and last names. IOW, with all the last
names starting one space after the first name, not with all the last names
starting in the same column. Is this possible, or do I have to create
another field with both names? Thanks for any help.

Brad
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top