Displaying the content of two fields in one.

donrichy

New member
Local time
Today, 05:06
Joined
Jul 14, 2012
Messages
2
Is it possible to display the content of two fields in separate tables say Tab A and Tab B in a separate field in Tab B. Eg.in Tab A there is a field known as "Short code - text" which displays e.g. AAN and a field in Tab B called "ID - Autonumber (format 0000)" e.g. 0001.(There is one - many relationship between Tab A and Tab B). I want to display "AAN0001" in the field "Project No." in Tab B.
Can this be done.:confused:
 
Your Form can only be bound to one table, so you will need to use the DLookUp() to collect the related data from your second table.

You could then concatenate your two pieces of data in an unbound text box, using Control Source along the lines of;
Code:
=Me.YourFieldOnForm & DLookUp()
 

Users who are viewing this thread

Back
Top Bottom