I have a query that outputs three columns, [Date], [Type], and [Volume] over the past seven days. I need to SUM [Volume] with [Type] = I or [Type] = W for each date, so I would have 7 dates rather than 14. each of the 7 with two entries, one for I and W.
Rather than this:
|Date |Type|Volume|
7/23/2010 I 200
7/23/2010 W -100
I Need:
|Date |Type|Volume|
7/23/2010 G 100
Rather than this:
|Date |Type|Volume|
7/23/2010 I 200
7/23/2010 W -100
I Need:
|Date |Type|Volume|
7/23/2010 G 100