I made a query (with help from your query forum - thanks!) to get the "FullName" for people in my tblPersonal table.
The query SQL is
It produces results like:
Doe, John "Johnny" JR
I would like to use this in a report that lists all the members. But when I try to do this I get an error that I can't use a query that is based on a table that I'm already using in the report. What's the best way to solve this?
Thanks Much!!
The query SQL is
Code:
SELECT tblPersonal.NameL & ", " &
tblPersonal.NameF &
IIF ( Len(NZ(tblPersonal.NICK,"")) > 0,
" """ & tblPersonal.NICK & """ ", "") & " " &
tblPersonal.SUFFIX AS FullName
FROM tblPersonal
ORDER BY tblPersonal.NameL, tblPersonal.NameF, tblPersonal.SUFFIX;
It produces results like:
Doe, John "Johnny" JR
I would like to use this in a report that lists all the members. But when I try to do this I get an error that I can't use a query that is based on a table that I'm already using in the report. What's the best way to solve this?
Thanks Much!!