
Originally Posted by
June7
What you are trying to do is set up a report that pivots and summarizes data and you want the report to be dynamic (i.e. automatically adjust for the advancing time period). Not so easy to do with pivoted data but there is more than one way to skin this cat. Just have to be creative and think outside the Access box. Maybe this will get you started.
Month 1 is the month input by user on form (September is 9)
Month 2 is month 1 plus 1 (10 for October)
Month 3 is month 1 plus 2 (11 for November)
Then textboxes in footer section might be like:
=Count(IIf(Month([Received])=Month1,[ID])
=Count(IIf(Month([Received])=Month1+1,[ID])
=Count(IIf(Month([Received])=Month1+2,[ID])
=Count(IIf(Month([Received])=Month1,[Redraw])
=Count(IIf(Month([Received])=Month1+1,[Redraw])
=Count(IIf(Month([Received])=Month1+2,[Redraw])
Beyond this, I would have to know more about your data structure.