Oct 7, 2008 #1 goldfishhh IS-IT--Management Joined Jul 23, 2008 Messages 23 Location US I'm beating my head against the wall on this one. I want to run a report during a month and have the date range be "past 3 months". Help computer!
I'm beating my head against the wall on this one. I want to run a report during a month and have the date range be "past 3 months". Help computer!
Oct 7, 2008 #2 satinsilhouette Instructor Joined Feb 21, 2006 Messages 625 Try this: if {datefield} in DateSerial(Year({?Start Date}),Month({?Start Date})-3,01) to DateSerial(Year({?Start Date}),Month({?Start Date})-2,01-1) Thanks so much! satinsilhouette Upvote 0 Downvote
Try this: if {datefield} in DateSerial(Year({?Start Date}),Month({?Start Date})-3,01) to DateSerial(Year({?Start Date}),Month({?Start Date})-2,01-1) Thanks so much! satinsilhouette
Oct 7, 2008 #3 lbass Technical User Joined Feb 9, 2002 Messages 32,818 Location US Try using a record selection formula like this: {table.date} in dateadd("m", -3, currentdate-day(currentdate)+1) to currentdate-day(currentdate) -LB Upvote 0 Downvote
Try using a record selection formula like this: {table.date} in dateadd("m", -3, currentdate-day(currentdate)+1) to currentdate-day(currentdate) -LB