If Form ... Value = ?????? Then DoThis()<br><br>Actually, there may also be a problem in the syntax for the checkbox.<br><br>Try <br><br>If Me!Check1.Value = 1 Then (or Me.Check1.Value)<br> Do This<br>End If<br><br>I would also rename my checkboxes and other controls so they have a meaning, ckHungry, for example.<br><br>Then Me!ckHungry.Value = 1 Then<br><br><br><br>Dan