I thought I would take you through my thinking as there may be a better way than using INDIRECT to achieve the desired result but if not then a solution with indirect would be very handy.
I had a simple formula
=SUMPRODUCT($E$10:$E20,J10:J20)
Dragged across a great number of columns ending somewhere in the CC's
However I found when I inserted a row it would change my 10 and $10 to 11 and $11, so i placed an indirect in there.
=SUMPRODUCT(INDIRECT("$E$10:$E20"),INDIRECT("J10:J20"))
I now realize that I'm referring to a string and if I drag this across to the right, the cell references won't update.
So initially my first question was how could I go about updating these so that I can drag the INDIRECT
across the columns to the right and update the cell references so that my formula would resemble or at least work in the same way when dragged into column K and so on.
=SUMPRODUCT(INDIRECT("$E$10:$E20"),INDIRECT("K10:K20"))
HOWEVER
If There is a better solution than the indirect to keep my orignial formula when rows are inserted or deleted that would be very helpful too.