hansdebadde
Technical User
I have one check box on my Access 2003 form called tbl_F7A_EEsPersonalCoverage. I have to print out a report that has a Yes checkbox and a No checkbox on it. I obviously want the Yes checkbox to be checked if the checkbox on the form is Yes and the No checkbox to be checked on the report if the one checkbox on the form is not checked. I tried
=IIf([tbl_F7A_EEsPersonalCoverage]=-1,True,True) in the control source of the Yes checkbox on the form and
=IIf([tbl_F7A_EEsPersonalCoverage]=-1,True,False)in the contol source of the No checkbox on the form.
I tried substituting -1 and 0 for Y/N as well.
Obviously it did not work or I wouldn't be begging for help. Any suggestions?
=IIf([tbl_F7A_EEsPersonalCoverage]=-1,True,True) in the control source of the Yes checkbox on the form and
=IIf([tbl_F7A_EEsPersonalCoverage]=-1,True,False)in the contol source of the No checkbox on the form.
I tried substituting -1 and 0 for Y/N as well.
Obviously it did not work or I wouldn't be begging for help. Any suggestions?