Good morning, I have inherited an Access database that has a form containing a field that has to show the start date of the previous quarter - in this case that would be 1st October 2014. I was trying to understand the Default Value text as it came up showing 2nd October. I amended it as below and it now shows "01/10/2014", so I'm pretty happy about that, but I'd really like to understand what's going on if anyone could spare the time to explain.
Many thanks,
D€$
=DateAdd("m",-3,(DateSerial(Year(Date()),3*Int(((Month(Date()))-1)/3)+1,1)-1))+1
Many thanks,
D€$