I am trying to execute an immediate if based on a check box. I want certain fields to become invisible on my form if the box is not checked (true). Currently I have the code listed below in the "after update" control of the check box. When checked and exited, the box does nothing. When I uncheck the box, the questions apear like they are supposed to. Every other time I click the box, the macro executes. Where am I going wrong? I feel I am really close, but it is driving me crazy. Thanks, Michael Moore
IIf([Forms]![TheBigForm]![BusinessLease]=True,[Forms]![TheBigForm]![Option113].[Visible]-1,[Forms]![TheBigForm]![Option113].[Visible]=0)
IIf([Forms]![TheBigForm]![BusinessLease]=True,[Forms]![TheBigForm]![Option113].[Visible]-1,[Forms]![TheBigForm]![Option113].[Visible]=0)