I have a table with columns for certain states. Each state belongs to a certain area. I now need to combine the columns for each area into one column and add the values for the rows where an input criteria is met. How do I do this? Here is an example:
Table to be combined:
Criteria CA CT NJ NV NY Q1/13 c1 2 3 4 5 3 Q1/13 c2 4 3 4 2 6 Q2/13 c1 4 3 6 3 3 Q2/13 c2 2 4 3 5 3 Q3/13 c1 4 3 4 2 5 Q3/13 c2 3 5 2 5 3 Q4/13 c1 2 4 3 3 4 Q4/13 c2 3 2 4 3 4
Inputs:
Area1 CA,NV Area2 CT,NJ,NY Criteria c1
Result:
Area1 Area2 Q1/13 ? ? Q2/13 ? ? Q3/13 ? ? Q4/13 ? ?
Bookmarks