I am trying to append data to a table with a date from a textbox on a form and have the append query increment the date field by 1 day i.e. DateAdd("d",1,Date())
INSERT INTO TblDietPlan ( ClientID, MealDate, MorningSnack, AfternoonSnack, EveningSnack )
SELECT DISTINCT TblDietPlan.ClientID...