After Update HELP!

  • Thread starter Thread starter J.J.
  • Start date Start date
J

J.J.

hi,
I have a form(Employees) with combo box(Rating) that has only 2
values(FirstClass, SecondClass). On other form(Sales) that has combo
box(Employees_ID). Now I want after update of Sales_Form to trigger either
FirstClassMacro or SecondClassMacro based on that what is selected in
Employees_Form.

Tnx in advance
J.J
 
JJ,

If you are using a macro, you can put something like this in the
Condition of the macro actions concerned...
[Forms]![Employees]![Rating]="FirstClass"
 
Back
Top