Check box in report

  • Thread starter Thread starter Bisro Solan
  • Start date Start date
B

Bisro Solan

I have a query (qryAssyReport) that has fields for approvals (Culus, FM, Ce).
The approval fields have image numbers in them so my label software knows
what to image to print. What I would like to do is have check boxes on the
report (rptAssyReport) for all the approvals that will set themselves to true
or false based on whether the approval field is null. Can anyone help with
this?
 
set your approval field to invisible and add a check box:
set the source to =IIF(IsNull([approval]), 0, -1)
 
Back
Top