Hide Field when Checkmark is Checked

P

Petra

What is the VB to hide a field when a checkmark is checked? Does this work
on Reports? Is it possible to hide a field on a report when a checkmark is
checked on a form? I appreciate your help.
 
D

Duane Hookom

Use the On Format event of the report section containing the text box (not
field).
Me.txtTextBox.Visible = Not Forms!frmYourForm!chkYourCheck
 
Top