A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
From Google AI
A
SUMIFSformula produces a spill error when an array of criteria (such as{"Apples","Oranges"}) is passed into it instead of a single value. This tricks modern Excel into trying to output multiple calculation results into adjacent cells, but the area is blocked by surrounding data.
In your formula, the criteria argument is StatOpr. StatOpr is defined as the area from A6 to A33, an array of 28 values. Your formula is trying to generate a vertical array of 28 sums. At least one of the 28 cells that would hold this array of sums has a value so the first cell (the one containing the formula) is set to #SPILL.Are you really trying to generate 28 sums with one formula? If so, remove any values in the 27 cells immediately below the cell containing the formula. Otherwise, tell us the real intent of the formula and we can help you achieve that.