Look up a value

A

ake

I think my problem is about looking up a value.
I have a table with the following values

Name Initials
Juan dela Cruz JdC
Kate Winslet KW
Manuel Tan MT

I put the initial field in the form as when they created an entry in the
form, their initials would show.
My problem is that when i create report I want their full name to appear
rather than their initials, how would I do that?
 
M

Marshall Barton

ake said:
I think my problem is about looking up a value.
I have a table with the following values

Name Initials
Juan dela Cruz JdC
Kate Winslet KW
Manuel Tan MT

I put the initial field in the form as when they created an entry in the
form, their initials would show.
My problem is that when i create report I want their full name to appear
rather than their initials, how would I do that?


Change the report's record source to a query that joins the
two tables on the initials field.
 
A

Al Campagna

ake,
If you're saying that NameInitials is one field with values
such as "Juan dela Cruz JdC", then you'll need to rethink
your table design.
Because names differ in their spaces, and your initials differ
in length, there's no way to logically extract the initials from the name.

Never store more than one value in a single field.

You should have 3 fields instead of just one...
FirstName LastName Initials
Kate WinsletKate KW

On your report, you can concatenate the FirstName and
LastName to display a "complete" name.
A calculated text control named FullName would have a
ControlSource of...
= FirstName & " " & LastName
and would display the name properly.
--
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."
 
J

Jeff Boyce

What do you do when two people share the same initials?

Regards

Jeff Boyce
Microsoft Office/Access MVP
 

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