I have the following formula, which is populating the values in a column in one worksheet (Day1), using the values in the previous worksheet (Data). The values are sequential; i.e I don;t need to skip any rows.
=OFFSET(Data!$F$6,(ROW(E2))-1,0)
I need to be able to insert numerous blank rows in the Data worksheet, starting at the top of the data, and for the formula to recognize this and populate the cells in Day1 with zeros if necessary. In other words I need the formula in worksheet 2 to always reference say cell F5 in Worksheet 1 even if I insert 100+ rows at the top of the data.
As I potentially have 1000's of rows of data, I also need to autofill the formula in Worksheet 2.
This is the bit I am stuck on. The formula above, will autofill the cells with the correct values, but if I insert say 50 blank rows, it keeps the cell reference (I.e the reference changes from $f$6 to $F$56 for a given cell).
However if I remove the $ absolute reference, the formula will recognize when blank rows are introduced, but is not returning the correct values. I think this is because the 'Zero' reference keeps moving when I drag to autofill, so I end up getting every other value.
Does anyone know if it's possible to combine these two requirements?
I am using Excel Office 365 Business (Version 15.0.5189.1000)