A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
#SPILL! appears when Excel cannot place all the results of a formula into the grid. For a formula like =CONFIDENCE.T(...), the most common causes are:
- Spill range is not blank
- Select the cell that shows
#SPILL!. - A dashed border will appear around the intended spill range.
- Click the error icon that appears next to the cell and choose Select Obstructing Cells.
- Clear or move any values, formulas, tables, or PivotTables in those obstructing cells.
- Once the obstruction is removed, the formula will spill correctly.
- Select the cell that shows
- Spill extends beyond the worksheet edge
If the formula would return more rows/columns than fit on the sheet (for example, because one of the arguments is a full-column reference like
A:A), Excel returns#SPILL!. To fix this:- Avoid using full-column references in dynamic array formulas.
- Reduce the size of the range arguments so the result fits on the sheet, or
- Move the formula cell so that there is enough space for the spill range.
- Indeterminate spill size
If any argument to the formula uses volatile functions that cause the result size to change between recalculations (for example,
SEQUENCE(RANDBETWEEN(1,1000))), Excel may not be able to determine a stable spill size and will show#SPILL!. To fix this:- Remove or replace volatile functions that change the size of the result, or
- Use fixed sizes (constants or non-volatile references) so the spill size is stable.
If none of these apply, check that the formula is written exactly as required in the homework instructions and that all required arguments are present, since an unrecognized/fallback #SPILL! can occur when the formula is not valid for the given arguments.
References: