this is within the control source of a checkbox called Yes:
and this is within the control source of a checkbox called No:
when I open the report the yes checkbox is true for every report and I know that it shouldn't be. there are only 10 that have the codes 033 or 035 and should have a yes check mark the others should have "True" for the No checkbox
Code:
=IIf([PrgrmCd]="033" Or "035",True,False)
Code:
=IIf([PrgrmCd]="033" Or "035",False,True)
Comment