Changing Value of a control after updating another one

  • Thread starter Thread starter Veli Izzet
  • Start date Start date
V

Veli Izzet

Hi all,

I want to change the value of a control (ControlToChange) to the value
of another control (ControlThatChanges) after updating this control.

In another words I want (ControlToChange) take the value of
(ControlThatChanges) after I input data to (ControlThatChanges).
Both the controls are on the same subform.

I tried to write a macro with GotoControl and SetValue but it didnot work.

Thanks for any help..
Regards
 
The macro would be just one step:

Action: SetValue
Control Name: ControlToChange
Expression: [ControlThatChanges]

Assign the macro to the AfterUpdate event of the ControlThatChanges control.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top