houstonbill
Technical User
- Nov 6, 2006
- 92
Have a query based on a form where users input comments based on several items. Currently, the subsequent report lists all 6 comment items whether or not the user has entered comments. Ideally, I would like to have the 6 items listed once with all comments appropriately under each item but I don't see how that can happen since I do not have the option to set headers for each of the items. So....I will go with separate sets of 6 for each person who inputs information from the form. Since the users do not have to input on all comment fields, how can I eliminate those that have no entry? Tried "is null" for each item but then nothing shows. Is there something else I should be doing? Below is my SQL:
SELECT tblReviewers.SuggID, tblReviewers.Feasibility, tblReviewers.StrategicPlans, tblReviewers.Costs, tblReviewers.Safety, tblReviewers.EmpSat, tblReviewers.Communication, tblReviewers.Competive, tblReviewers.Novelty, tblReviewers.CustProv
FROM tblReviewers;
SELECT tblReviewers.SuggID, tblReviewers.Feasibility, tblReviewers.StrategicPlans, tblReviewers.Costs, tblReviewers.Safety, tblReviewers.EmpSat, tblReviewers.Communication, tblReviewers.Competive, tblReviewers.Novelty, tblReviewers.CustProv
FROM tblReviewers;