Sep 17, 2003 #1 sharonma Technical User Feb 7, 2003 1 US I need to create a rolling twelve month report. I have started with the following: month(currentdate)-12 =month({table.name} ) I realize this won't work because there are no negetive months.
I need to create a rolling twelve month report. I have started with the following: month(currentdate)-12 =month({table.name} ) I realize this won't work because there are no negetive months.
Sep 17, 2003 #2 synapsevampire Programmer Mar 23, 2002 20,180 US Use the dateadd function to add/subtract dates: dateadd("m",-12,{table.date}) There are lots of examples of a rolling 12 month report here, check the Crystal other topics forum for Howard Hammerman's approach: faq149-1220 -k Upvote 0 Downvote
Use the dateadd function to add/subtract dates: dateadd("m",-12,{table.date}) There are lots of examples of a rolling 12 month report here, check the Crystal other topics forum for Howard Hammerman's approach: faq149-1220 -k