What I am doing is trying to get a combined solution set.
Basically I want to combine the results of these two queries:
Select Event_id,Question_id,Response,AgeGroup,Sum(Quantity)
From Event_line
Group by Event_id,Question_id,Response,AgeGroup
and
Select AgeGroup, Sum(Quantity)
From Event_line...