Is there a way that I can create a formula in access where all I need to do is enter in a end date, and the start date will automatically be generated by end date minus 45 days. I currently use
Between [StartDate] And DateAdd("s",-1,CDate(Int(CDbl(DateAdd('d',1,[EndDate])))))
which works excellent.
Between [StartDate] And DateAdd("s",-1,CDate(Int(CDbl(DateAdd('d',1,[EndDate])))))
which works excellent.