sorry, i just post the same question.
thank you all for replying, that's my book says have to create with last &
first name...and this that, I know i should done it when i create the
datebase, now it's to hard to change it there are about 2000 records. i have
one more question, how to combine the address, ie. city & state & zipcode in
one line, thank you.
:
Carol,
It's really your table design taht is causing this problem to begin with. It
strongly
suggest that you fix that first, than to struggle with this problem again and again
in
the
future.
Right now, you can't even sort your Customers by Last Name/First Name.
You should create a CustFirstName and CustLastName and a SpouseFirstName field in
your
table, and break out those values into their respective discreet fieldss.. (avoid
spaces
in field names)
Then this simple concatenation would do the job...
= CustFirstName & " & " & SpouseFirstName & " " & CustLastName
--
hth
Al Campagna
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions
Hi, All
I have a customer contact info database, "Customer Name" & "Spause Name",
address, city..., when i am printing a report i like to combine "Customer
Name & Spause Name", ie "David Howe" & "Betty Howe", is there some way to
make it show "David & Betty Howe" on my report?
thanks Carol.