I have a subform that includes StartDate and EndDate. In this subform I want the EndDate to be automatically calculated when I enter the StartDate. I understand an update query will do this and I have made one with the following code,
DateAdd("d",21,[StartDate])
How do I go about connecting...