I have a form with a command button and I need it to insert the current date + 3 months. So if today is 1/1/11 I need it to insert the date 3/1/11. This date field does not always need the advanced date, sometimes it will be manually entered as a different date, so having a query auto add to the date will not work. I need it to be in my form.
This is what I currently have as an event procedure: [Forms]![ContactDetails]![NxtCntact] = DateAdd(month, 3, Date)
Can Someone please help me.