T
The Pikey
SELECT [Main Data Table].Review, [Main Data Table].EC, [Main Data
Table].Error_Code, [Main Data Table].UpndReview1, [Main Data
Table].Error_description, [Main Data Table].Error_contact, [Main Data
Table].Err_date, [Main Data Table].RevDate
FROM [Main Data Table]
WHERE ((([Main Data Table].Config_Name)=[Enter Name Below]) AND (([Main Data
Table].RelDate) Is Null))
ORDER BY [Main Data Table].Error_Code;
The above query lists all records assigned to a person using [Config_Name]
field as the criteria. This field in the [Main Data Table] is a Combo Box.
How do I amend the query so it gives me a combo box to select the criteria,
rather than having to type the name in manually each time?
Table].Error_Code, [Main Data Table].UpndReview1, [Main Data
Table].Error_description, [Main Data Table].Error_contact, [Main Data
Table].Err_date, [Main Data Table].RevDate
FROM [Main Data Table]
WHERE ((([Main Data Table].Config_Name)=[Enter Name Below]) AND (([Main Data
Table].RelDate) Is Null))
ORDER BY [Main Data Table].Error_Code;
The above query lists all records assigned to a person using [Config_Name]
field as the criteria. This field in the [Main Data Table] is a Combo Box.
How do I amend the query so it gives me a combo box to select the criteria,
rather than having to type the name in manually each time?