I need to know how to make it so that the specified date is counted as 1 day already.
I have
For example, if my appDate is 2/28/06, the result I get is 13.
I need to find out how I can have it treat the appDate as 1 day so my result would of been 14.
Would it be easier to cheat and just put a + 1 on the end of that line? Not sure what the best approach would be, so any advice???
Thanks all!!!
I have
Code:
=DateDiff("d",[appDate],Now())
I need to find out how I can have it treat the appDate as 1 day so my result would of been 14.
Would it be easier to cheat and just put a + 1 on the end of that line? Not sure what the best approach would be, so any advice???
Thanks all!!!