julesverne
Programmer
I could not find the answer to this simple problem in the "threads".
I have a report based on table "bib"
Table "bib" has a field "first", a 1 character abreviation.
Table "first" has 2 fields... the above abreviation in a field called "first" (yes same in both tables), and the full name in field "place"
How do I get the full name "place" to print on my report instead of the abreviation?
I have attempted :
but I get a "#error".
(the above should say "First American" or "First English" if it works correctly!)
Thank you for your time... Andrew
I have a report based on table "bib"
Table "bib" has a field "first", a 1 character abreviation.
Table "first" has 2 fields... the above abreviation in a field called "first" (yes same in both tables), and the full name in field "place"
How do I get the full name "place" to print on my report instead of the abreviation?
I have attempted :
Code:
=DLookUp("[PLACE]","FIRST","[FIRST]='" & [FIRST] & "'")
(the above should say "First American" or "First English" if it works correctly!)
Thank you for your time... Andrew