P
Pendragon
Trying to write a query where a field puts two names together and the names
are separated with " / " (with a space before and after the slash). Drawing
a total blank here. Data will always be in Name1, maybe in Name2.
MyField: qryIndividuals.Name1 & (" / " + qryIndividuals_1.Name2)
qryIndividuals and qryIndividuals_1 are LEFT JOINs from tblOfficialsList, if
that makes any difference.
If I use qryIndividuals.Name1 + " / ", I get all of the names with the
slash. But if I add in the qryIndividuals_1.Name2 to get the second names
where applicable, I get #Error.
How do I append the slash where there are two names?
are separated with " / " (with a space before and after the slash). Drawing
a total blank here. Data will always be in Name1, maybe in Name2.
MyField: qryIndividuals.Name1 & (" / " + qryIndividuals_1.Name2)
qryIndividuals and qryIndividuals_1 are LEFT JOINs from tblOfficialsList, if
that makes any difference.
If I use qryIndividuals.Name1 + " / ", I get all of the names with the
slash. But if I add in the qryIndividuals_1.Name2 to get the second names
where applicable, I get #Error.
How do I append the slash where there are two names?