Jul 27, 2004 #1 adhhealth Programmer Jul 1, 2004 165 US I print "printdate" on my report and I have to print another date which should be "printdate" + 2years. How can we do this?
I print "printdate" on my report and I have to print another date which should be "printdate" + 2years. How can we do this?
Jul 27, 2004 #2 lisanguyen Technical User Jul 26, 2004 12 CA Hi, You can use the dateadd function DateAdd("yyyy", 1, printdate) Upvote 0 Downvote
Jul 27, 2004 #3 bdreed35 Programmer Mar 2, 2003 1,549 US Create a new formula field. In the formula field, use the formula that lisa posted above, except use a 2 instead of a 1. DateAdd("yyyy", 2, printdate) I assume that was just a typo on her part. You get more info on the DateAdd function in the help files. ~Brian Upvote 0 Downvote
Create a new formula field. In the formula field, use the formula that lisa posted above, except use a 2 instead of a 1. DateAdd("yyyy", 2, printdate) I assume that was just a typo on her part. You get more info on the DateAdd function in the help files. ~Brian