Copy Date Value from one Control to many others

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

Guest

Hello,

I have a simple question, but lack the coding. I need to copy the value
from one control named Date to 15 separtately named controls and assign a
macro button to do this. Could somebody please help?

Thanks much,
 
"Date" is a reserved word. You need to change the name of the control.

If you rename the control "MyDate", put this expression in the control
source of the other 15 controls:
=[MyDate]
When you change MyDate, the other 15 controls will change automatically.
 
Back
Top