AboutRichard Rost Expertise I am happy to answer any kinds of questions about Microsoft Access - from basic table design to advanced VBA programming. Also, please feel free to check the Access Tips & Tricks section of my web site.
Education/Credentials I am a self-taught Access expert. I have been building databases for clients since the early 90s. You can see a sample of my Access Tutorials on my web site at 599CD.com
Question
Hi, Creating the report of the access from which contain the checkbox entry . want to make report which only contain the entry which have tick on checkbox from database. how do put the condition on the filed design query ?
please advise me on this.
Answer
You would need to have a BUILD EVENT in the DETAIL SECTION for your report that basically says:
IF MyCheckBox = TRUE then
MyCheckBox.Visible = TRUE
else
MyCheckBox.Visible = FALSE
end if
my question is if you have a certain employee is it possible to instead of having a checkbox have a prompt box that asks for a employee name or ID and then make only records that are for him visible?
Answer Sure, you can either use a parameter query to ask for the user ID:
P.P.S. I volunteer my time at AllExperts to help people, and I get a LOT of questions, so I can't take an hour to answer each question. If you need more DETAILED HELP, come to my TechHelp web site at http://www.599cd.com/TechHelp/AllExperts and I'll take as much time as you need to answer your question.