macro help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form with 2 check boxes 3 days and 5 days. I need that when one of the check boxes either 3 days or 5 days is checked for it to add the approprite number of days to the date and display it in the follow up date box.
 
Microsoftne,

You can do this with a macro on the AfterUpdate event of each of the two
checkboxes, like this...
Condition: [NameOf3DayCheckbox]=-1
Action: SetValue
Item: [FollowUpDate]
Expression: [FirstDate]+3

Please post back if you need any more specific help with this.
 
Back
Top