kentwoodjean
Technical User
I am using the following criteria to obtain a 12 month running total on a query;
Between (DateSerial((Year(Now())-1),Month(Now()),1)) And (DateSerial((Year(Now())),IIf(Month(Now())=1,12,Month(Now())-0),1))
Only problem is that my August data has not arrived and normally does not come until about the 15th of the following month. Therefore, there is no entry for Aug when the query is run, and when I run my crosstab report, I get an Error because the field "Aug" has no data.
What can I do in a case like this so my report will carry Aug 2004 data until my Aug 2005 data arives on the 15th??
Thanks.
Between (DateSerial((Year(Now())-1),Month(Now()),1)) And (DateSerial((Year(Now())),IIf(Month(Now())=1,12,Month(Now())-0),1))
Only problem is that my August data has not arrived and normally does not come until about the 15th of the following month. Therefore, there is no entry for Aug when the query is run, and when I run my crosstab report, I get an Error because the field "Aug" has no data.
What can I do in a case like this so my report will carry Aug 2004 data until my Aug 2005 data arives on the 15th??
Thanks.