S
Scuda
Evening all. I have a Select query (code at bottom). My problem is that when
I attempt enter a name for the query (controller) it shows nothing. I believe
this is because the controller lookup I have in the table is a combo box from
another table. So, if I type in thier ControllerID number, it returns the
query. How can I make this work for the name?
Thanks so much, Steph
SELECT tblSENEIncidentLogCY.MISLE_Number,
tblSENEIncidentLogCY.[SENE_CASE_#], tblSENEIncidentLogCY.DAY,
tblSENEIncidentLogCY.FY, tblSENEIncidentLogCY.[NATURE OF DISTRESS],
tblSENEIncidentLogCY.CONTROLLER, tblSENEIncidentLogCY.LIVESSAVED,
tblSENEIncidentLogCY.LIVESASSISTED, tblSENEIncidentLogCY.[Case Description],
tblSENEIncidentLogCY.ASST_CONT_BI, tblSENEIncidentLogCY.MONTH
FROM tblSENEIncidentLogCY
WHERE (((tblSENEIncidentLogCY.CONTROLLER) Like "*" & [Enter in Controller
Name (partial works)] & "*"));
I attempt enter a name for the query (controller) it shows nothing. I believe
this is because the controller lookup I have in the table is a combo box from
another table. So, if I type in thier ControllerID number, it returns the
query. How can I make this work for the name?
Thanks so much, Steph
SELECT tblSENEIncidentLogCY.MISLE_Number,
tblSENEIncidentLogCY.[SENE_CASE_#], tblSENEIncidentLogCY.DAY,
tblSENEIncidentLogCY.FY, tblSENEIncidentLogCY.[NATURE OF DISTRESS],
tblSENEIncidentLogCY.CONTROLLER, tblSENEIncidentLogCY.LIVESSAVED,
tblSENEIncidentLogCY.LIVESASSISTED, tblSENEIncidentLogCY.[Case Description],
tblSENEIncidentLogCY.ASST_CONT_BI, tblSENEIncidentLogCY.MONTH
FROM tblSENEIncidentLogCY
WHERE (((tblSENEIncidentLogCY.CONTROLLER) Like "*" & [Enter in Controller
Name (partial works)] & "*"));