I have an income statement table (worksheet IS) with structure as such:
Rows: date by months in row1 (Jan 2015, Feb 2015,...), year of month in row2 (2015, 2015,...).
Cols; A empty, B has the labels of the line items in the income statement (revenue, expenses, interest earned, net income etc.).
I want to summarize the IS table by year in a summary worksheet where row1 is the year field. I thought the formula below would work to pick up the interest earned item totaled by year but it only picks up the first instance of the year match, not all instances of the year match:
=SUMIF(IS!$B$2:$B$494,"Interest Earned",INDEX(IS!$C$2:$CC$2,MATCH(E$1,IS!$C$2:$CC$2,0)))
Any help on adding all columns that have that year match for the specified line item? Thank you.
Rows: date by months in row1 (Jan 2015, Feb 2015,...), year of month in row2 (2015, 2015,...).
Cols; A empty, B has the labels of the line items in the income statement (revenue, expenses, interest earned, net income etc.).
I want to summarize the IS table by year in a summary worksheet where row1 is the year field. I thought the formula below would work to pick up the interest earned item totaled by year but it only picks up the first instance of the year match, not all instances of the year match:
=SUMIF(IS!$B$2:$B$494,"Interest Earned",INDEX(IS!$C$2:$CC$2,MATCH(E$1,IS!$C$2:$CC$2,0)))
Any help on adding all columns that have that year match for the specified line item? Thank you.