Hopefully this will make sense on a Friday, but here goes.
I have a database with a bunch of data housed as yes/no fields and checkboxes in the forms. I am wanting to create a report that basically lists out everything that has been checked as 'yes' for a each rep. I have my query setup to just pull the rep, but I am not sure how to just get the data that has been checked.
Any help would be great!
Here is the SQL for the query, figured that was easier to look at.
This is pulling the data for only the rep I want, but I am pretty lost from here!
Dan
I have a database with a bunch of data housed as yes/no fields and checkboxes in the forms. I am wanting to create a report that basically lists out everything that has been checked as 'yes' for a each rep. I have my query setup to just pull the rep, but I am not sure how to just get the data that has been checked.
Any help would be great!
Here is the SQL for the query, figured that was easier to look at.
Code:
SELECT tData.sName, tData.Value1, tData.Value2, tData.Value3, tData.Value4, tData.Value5
FROM tData
WHERE (((tData.sName)=[Forms]![fReporting]![comChange]));
This is pulling the data for only the rep I want, but I am pretty lost from here!
Dan