Sub form date

  • Thread starter Thread starter kaltman
  • Start date Start date
K

kaltman

Can a date in a sub form automatically update after entering the "begin date"
in the master form? ie: if begin date in the maser form is entered as 11/3,
how can the date control in the sub form update to 11/10?
 
Hi,

you can use the After Update event of the "BeginDate" field in the master
form to change the date control in the subform like:

Me![Name subformcontrol].form![Name datefield in subform] =
Me![Begindate field] + 7
 
Back
Top