I have a fairly simple formula that I am trying to amend so that inserting a line does not cause the cell values to change using the INDEX command. The formula I was using was:
=IF(E6>0, E6, 0)
Which I have updated to:
=IF(INDEX(C:E,3,3>0),INDEX(C:E,3,3,0))
This produces a #VALUE error so...