Hi there
I would like to put a combo box in a query. In my main table I have a field called Category (friends, business contacts etc) where it is a combo box where users are able to select a category.
I am wanting to make a query where it also has this drop down box so users can also choose from this and then I can can turn the results into a report.
SELECT Contacts.Title, Contacts.FirstName, Contacts.LastName, Contacts.Category, Contacts.Home_PhoneNumber, Contacts.Home_CellPhoneNumber, Contacts.Business_PhoneNumber, Contacts.[Business_Cell phone]
FROM Contacts
WHERE (((Contacts.Category)=[Please select the category]));
I'm not sure how to put the combo box in here. Can anybody out there help me.
Thanks
Mike