Hi,
I need to build a report that will display the number of people for each day in a given date range.
Example Data:
Name In Out
A 1/1/2012 1/2/2012
B 1/1/2012 1/3/2012
C 1/2/2012 1/2/2012
D 1/3/2012 1/10/2012
E 1/5/2012 (null)
The report prompts for a date range and should return the number of people that were in during each day of the date range
For example, if date range provided was 1/2/2012 to 1/5/2012, I would expect the report to return:
Date #
1/2/2012 4
1/3/2012 3
1/4/2012 1
1/5/2012 2
My selection parameters work in pulling all people who were within the date range, however, I am at a loss in getting the report to display for each day. I've tried making an array of dates for the date range given in the parameter, but I must be doing it wrong (would an array be the best to use in this situation?). Any ideas would be greatly appreciated!!
Thank you,
AS
I need to build a report that will display the number of people for each day in a given date range.
Example Data:
Name In Out
A 1/1/2012 1/2/2012
B 1/1/2012 1/3/2012
C 1/2/2012 1/2/2012
D 1/3/2012 1/10/2012
E 1/5/2012 (null)
The report prompts for a date range and should return the number of people that were in during each day of the date range
For example, if date range provided was 1/2/2012 to 1/5/2012, I would expect the report to return:
Date #
1/2/2012 4
1/3/2012 3
1/4/2012 1
1/5/2012 2
My selection parameters work in pulling all people who were within the date range, however, I am at a loss in getting the report to display for each day. I've tried making an array of dates for the date range given in the parameter, but I must be doing it wrong (would an array be the best to use in this situation?). Any ideas would be greatly appreciated!!
Thank you,
AS