J
Joyce
Thank you Marsh for your help. Yes that works for me but
now I have another problem. This report I'm working with
is a monthly production report. I originally had the
report open first promting for a start and end date based
on date received. So for instance in Feb, the user would
key 02/01/04 to 02/29/04 and get all the cases, sorted by
case type for that time.
The problem is that the cases received in January but
resolved in February aren't being counted. So I thought I
should take the initial date search criteria out and just
list in the report
Cases Received =Abs(Sum(DateReceived Between #02/01/04#
And #02/29/04#))
Cases Resolved =Abs(Sum(DateResolved Between #02/01/04#
And #02/29/04#))
This is giving me the data I need, but the last bit of
information on my report is how many cases were resolved
within the establsihed turnaround time. Now when I
genterat my report, it calculates turnaround time year to
date, I need it to be just between Between #02/01/04# And
#02/29/04#.
Here is my code for determining cases closed within the
established turnaround time
=Count(IIf([TA2004]<=[TurnaroundDays],1,Null))
Is there a way I can limit the results to just cases
resolved from 02/01/04 to 02/29/04 in the above code?
Again, thank you for your help
now I have another problem. This report I'm working with
is a monthly production report. I originally had the
report open first promting for a start and end date based
on date received. So for instance in Feb, the user would
key 02/01/04 to 02/29/04 and get all the cases, sorted by
case type for that time.
The problem is that the cases received in January but
resolved in February aren't being counted. So I thought I
should take the initial date search criteria out and just
list in the report
Cases Received =Abs(Sum(DateReceived Between #02/01/04#
And #02/29/04#))
Cases Resolved =Abs(Sum(DateResolved Between #02/01/04#
And #02/29/04#))
This is giving me the data I need, but the last bit of
information on my report is how many cases were resolved
within the establsihed turnaround time. Now when I
genterat my report, it calculates turnaround time year to
date, I need it to be just between Between #02/01/04# And
#02/29/04#.
Here is my code for determining cases closed within the
established turnaround time
=Count(IIf([TA2004]<=[TurnaroundDays],1,Null))
Is there a way I can limit the results to just cases
resolved from 02/01/04 to 02/29/04 in the above code?
Again, thank you for your help