O
Olduke
Will said:Can someone point me to some Visual Basic or Access functions that would do
calculations on dates? Given as input the date and some number of days
before that date, I want as output the correct adjusted calendar date (e.g.,
2/2/2008 minus 3 days = 1/30/2008).
--
I'm a little rusty on this so if the code is wrong, perhaps someone will
correct it.
In the calculated date field add the following code:
=DateAdd("d" -3,[OriginalDateField])