Jun 29, 2004 #1 czarjosh Technical User Jul 14, 2002 79 US I have a check box field on a report, and I only want it to be visible IF the value of the field equals YES. How can I accomplish this.
I have a check box field on a report, and I only want it to be visible IF the value of the field equals YES. How can I accomplish this.
Jun 29, 2004 2 #2 dhookom Programmer Jun 24, 2003 22,497 US You can add code to the On Format property of the section containing the check box: Me.[chkMyCheckBox].Visible = Me.[chkMyCheckBox] = -1 Duane MS Access MVP Find out how to get great answers faq219-2884. Upvote 0 Downvote
You can add code to the On Format property of the section containing the check box: Me.[chkMyCheckBox].Visible = Me.[chkMyCheckBox] = -1 Duane MS Access MVP Find out how to get great answers faq219-2884.
Mar 24, 2005 #3 Wes1961 Technical User Aug 21, 2001 72 US Duane, Found the answer to my question by searching past post. Here's your star for helping me. Wes Upvote 0 Downvote
Mar 28, 2005 #4 ProgramError Programmer Mar 2, 2005 1,027 GB A neat way is... =IIf([value]=True,"i can read this","") put this in the control source of a textbox put on the report... substituting "value" for the checkbox name and "i can read this" for the text you want to display Program Error Why is it, I still think in terms of spectrum BASIC! Upvote 0 Downvote
A neat way is... =IIf([value]=True,"i can read this","") put this in the control source of a textbox put on the report... substituting "value" for the checkbox name and "i can read this" for the text you want to display Program Error Why is it, I still think in terms of spectrum BASIC!