Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Two different sources in the same text box 1

Status
Not open for further replies.

elefantmannen

Programmer
May 14, 2003
25
SE
I read in some post about adding two differet sources in the same text box. (Like value1 + " " + value2) but I cant find it when searching the forums. Someone who can direct me to the post or just put the answer here??
 
It would be something like this:
Code:
=[value1] & " " & [value2]
 
yes it works, but there is still a problem here... I have a query where information comes from two different tables and they have the same name. (table1 has a name, and table2 has a name) so I would like to write =[table1.name] & " " & [table2.name], but it doesnt work...
 
Try this way
=table1.[name] & " " & table2.[name]
TIA
 
no, it doesnt work.
I write it in the textbox, save it and run the report. When I open the design again access has changed it into
=table1.name & " " & table2.name
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top