Hi,
I need to shift a column range to the right by 5 when I drag down one row.
I.e. lets say I have values in A1:Z1 and I want to sum 5 cells at a time so
A2 = sum(A1:E1)
A3 = sum(F1:J1)
and so on
By following the guidance in this link I have managed to do this with ONE cell, but I need...