I am using a parameter Query to look up data by location. The query prompts for location:
Like "*" & [Enter any letters to search by: ] & "*"
I am creating a report on who attended a conference so the query also filters on a yes/no for attendance. I would like to also report how many people registered but do not want them shown on the report.
I have been trying this using a dcount in the query and it works if I hard code the location in as a criteria like so:
DCount("Registered","qryRegisteredAllLocation","Location ='St. Louis'")
but I would like to use the parameter already entered for location like so:
DCount("Registered","qryRegisteredAllLocation","Location ='Location Entered Already")
Is this possible?
Like "*" & [Enter any letters to search by: ] & "*"
I am creating a report on who attended a conference so the query also filters on a yes/no for attendance. I would like to also report how many people registered but do not want them shown on the report.
I have been trying this using a dcount in the query and it works if I hard code the location in as a criteria like so:
DCount("Registered","qryRegisteredAllLocation","Location ='St. Louis'")
but I would like to use the parameter already entered for location like so:
DCount("Registered","qryRegisteredAllLocation","Location ='Location Entered Already")
Is this possible?