this is the form and the code. AppDate has a date picker and with this code after I pick a new day the other date fields don't update until I tab to the next field. I want the other date fields to automatically update after I pick a new date from the date picker in the AppDate field.
What am I missing?
first date Sunday field name is AppDat then Monday AppDate2 etc Time Sunday Monday Tuesday Wednesday Thursday Friday Saturday 10:00 AM 07/02/17 07/03/17 07/04/17 07/05/17 07/06/17 07/07/17 07/08/17 10:30 AM 11:00 AM Private Sub AppDate_AfterUpdate() 11:30 AM 12:00 PM 12:30 PM AppDate2 = DateAdd("d", 1, [AppDate]) 1:00 PM AppDate3 = DateAdd("d", 2, [AppDate]) 1:30 PM AppDate4 = DateAdd("d", 3, [AppDate]) 2:00 PM AppDate5 = DateAdd("d", 4, [AppDate]) 2:30 PM AppDate6 = DateAdd("d", 5, [AppDate]) 3:00 PM AppDate7 = DateAdd("d", 6, [AppDate]) 3:30 PM 4:00 PM 4:30 PM Me.Refresh 5:00 PM 5:30 PM 6:00 PM End Sub 6:30 PM 7:00 PM 7:30 PM