M
MackBlale
I have a table that stores a Handling Team ID based upon a Cascading Combo
Box based upon a qry:
SELECT tblHandlingTeam.HandlingTeam, tblHandlingTeam.IDTeam,
tblHandlingTeam.IDHandlingCtr, tblHandlingTeam.TmDesig
FROM tblHandlingTeam
WHERE (((tblHandlingTeam.IDHandlingCtr)=[Forms]![LNA
Record]![HandlingCenter]))
ORDER BY tblHandlingTeam.IDTeam;
Each team has a Designator = TmDesig. I am tryin to cocantenate the
ClientID stored in tblEmployees with the TmDesig from tblHandlingTeam.
First I wrote qryDesigNtr
SELECT tblHandlingTeam.HandlingTeam, tblHandlingTeam.TmDesig
FROM tblHandlingTeam
ORDER BY tblHandlingTeam.TmDesig;
and then tried to display the Client ID and Team Designator in an unbound
textbox with this:
=[ClientID] & [qryDesigNtr]![TmDesig]
I keep getting this errror:
#Name?
Can someone point me in the right direction
Mack
Box based upon a qry:
SELECT tblHandlingTeam.HandlingTeam, tblHandlingTeam.IDTeam,
tblHandlingTeam.IDHandlingCtr, tblHandlingTeam.TmDesig
FROM tblHandlingTeam
WHERE (((tblHandlingTeam.IDHandlingCtr)=[Forms]![LNA
Record]![HandlingCenter]))
ORDER BY tblHandlingTeam.IDTeam;
Each team has a Designator = TmDesig. I am tryin to cocantenate the
ClientID stored in tblEmployees with the TmDesig from tblHandlingTeam.
First I wrote qryDesigNtr
SELECT tblHandlingTeam.HandlingTeam, tblHandlingTeam.TmDesig
FROM tblHandlingTeam
ORDER BY tblHandlingTeam.TmDesig;
and then tried to display the Client ID and Team Designator in an unbound
textbox with this:
=[ClientID] & [qryDesigNtr]![TmDesig]
I keep getting this errror:
#Name?
Can someone point me in the right direction
Mack