Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Making Name Tags

2 views
Skip to first unread message

Eric Starn

unread,
Dec 23, 2009, 10:16:02 AM12/23/09
to
I am tasked in making Name Tags(Labels) from the Names from my database. I
have created a query of the just the [First Name] and [Last Name] of all
needed employee names. I am not quite sure where to go from here, so an
guidance will be appreciated.

Eric

Lars Brownies

unread,
Dec 23, 2009, 10:46:32 AM12/23/09
to
In Access2003 you have a reportwizard which includes a wizard to create
address labels (make sure the reports 'tab' is visible and click 'New'.
Maybe you can start there and use your query.

Lars


"Eric Starn" <Eric...@discussions.microsoft.com> schreef in bericht
news:55845B3C-249A-47B5...@microsoft.com...

Al Campagna

unread,
Dec 23, 2009, 10:59:14 AM12/23/09
to
Eric,
In your query behind the labels (aka name tags) report, concatenate the
[First Name] and [Last Name] in a calculated field...
(using the query design grid...)
FullName : [First Name] & " " & [Last Name]
Now, place the bound field FullName on your name tag report.

Tip: If you don't use spaces in your field anmes, you can drop the
bracketing...
FullName : FirstName & " " & LastName
--
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."


"Eric Starn" <Eric...@discussions.microsoft.com> wrote in message
news:55845B3C-249A-47B5...@microsoft.com...

Eric Starn

unread,
Dec 23, 2009, 12:07:01 PM12/23/09
to

Ok,
First of all I am using Access 2000. I don't know if this will make a
difference.

Second, Right now I just have the query. So you are saying add a calculated
field to the query to combine the first and last name, then make a report on
that field.

Sorry to be a pain
This is a new one for me.

Thanks

Eric


"Al Campagna" wrote:

> .
>

Al Campagna

unread,
Dec 23, 2009, 2:42:25 PM12/23/09
to
Eric,
The version makes no difference. Creating a calculated "bound"
field in a report query is a very common task in all versions of Access.
Your going to take the query you're building, and make it the
Record Source of your Name Tag report.
Using the query design grid, go to a blank column in your query,
and in the Field row of that column... enter this...

FullName : [First Name] & " " & [Last Name]

Choose a Sort value in that column... if needed.

You've just created a "bound" calculated field named FullName.
When you place [FullName] or FullName on your report, just like
any other bound field, it will display it's values as...
Richard Jones
or
Henry Smith
.... etc...


--
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."


"Eric Starn" <Eric...@discussions.microsoft.com> wrote in message

news:6C0169F5-60C8-4394...@microsoft.com...

0 new messages