Have query results in the following format, beginning at cell B2.
Month----------Type----------Amt
2013-01--------Clothing------$100
2013-02--------Furniture-----$150
2013-03--------Equipment-----$250
I need to populate two tables in another worksheet that are in the following format, beginning at cell B9
Type------------2013-01------2013-02-----2013-03
Clothing
Furniture
Equipment
Type------------2012-01------2012-02-----2012-03
Clothing
Furniture
Equipment
So far, I am not able to get the following Index Match formula to work.
=index(QueryResults!B276,Match(B9,QueryResults!C3:C76,0),Match(D6,QueryResults!B3:B76,0))
Note, I do not have any range names.
Any insight as to how I can "automatically" populate the two tables using Index Match or sumproduct or another function?
Thanks in advance.
Month----------Type----------Amt
2013-01--------Clothing------$100
2013-02--------Furniture-----$150
2013-03--------Equipment-----$250
I need to populate two tables in another worksheet that are in the following format, beginning at cell B9
Type------------2013-01------2013-02-----2013-03
Clothing
Furniture
Equipment
Type------------2012-01------2012-02-----2012-03
Clothing
Furniture
Equipment
So far, I am not able to get the following Index Match formula to work.
=index(QueryResults!B276,Match(B9,QueryResults!C3:C76,0),Match(D6,QueryResults!B3:B76,0))
Note, I do not have any range names.
Any insight as to how I can "automatically" populate the two tables using Index Match or sumproduct or another function?
Thanks in advance.