I am trying to use a SUMIF formula to sum information in a table format in Excel. I need to expand the sum range from 1 column to 3 columns.
Original Formula based 1 column:
=SUMIFS([[C1]:[C1]],[[Name]:[Name]],"ABC",[[Program]:[Program]],1)
Example:
| Name | Program | C1 | C2 | C3 |
| ---- | ------- | -- | -- | -- |
|ABC|1|10|15|0|
|DEF|2|20|0|3|
|ABC|3|5|9|8|
|DEF|2|20|0|3|
|GHI|3|7|4|8|
I've tried to update the formula as following:
=SUMIFS([[C1]:[C3]],[[Name]:[Name]],"ABC",[[Program]:[Program]],1)
Expecting to see the following results:
|Name|Program|Sum|
|-|-|-|
|ABC|1|25|
|ABC|3|22|
|DEF|2|23|
|GHI|3|19|
However, I am getting a #VALUE as the result when I expanded the sum to 3 columns.
I have thought about using SUMPRODUCT, but my table has over 1,000 rows of data. SUMPRODUCT appears limited to an array of 255.
