How to enter two Macros on a single Properties line?

F

FL

I'm trying to run two Macros on the On Exit property of a Text Box data
entry. Is this possible? One will run fine. But, I don't know how to run
two on the same On Exit line. I just thought of an idea. Maybe I can add
the second macro to the first macro design. Hopefully this will run both at
the same time. Any other suggestions please let me know.
 
D

Douglas J. Steele

You can either add the code from the second macro to the first macro, or you
can create a third macro that runs the first two, and put that third macro
as the OnExit property.
 
Top