EXCEL replace a #SPILL! error

I have a spill error in Excel, and I want to replace this with an NA.

I tried using IFERROR, but this hasn't worked.

Is there another way around this ?

enter image description here

enter image description hereenter image description here

The Helper tab uses a lookup table to direct OFFSET and INDEX formulas used throughout, it only starts at Jan 2020 which is where the SPILL comes from.

From the comments (Daniel B) it seems SPILL isn't an actual error, hence IFERROR not working, but is there another way I can replace SPILL ?

enter image description here

Here is what is shown in cell B6

enter image description here

7

1 Answer

It seems Excel try to be too clever and fills down your formula creating an array formula.

This is a behaviour sometimes occurring in newer versions of Excel.

To clarify you want to use a single formula only, you can use @ (implicit intersection operator)

so your formula will become: ...@INDEX(...

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like