What should be in cells A2,A3,...,A7,A8,... etc.?Given:
Formula in cell A1: =Data!A1
Formula in cell A6: =Data!A2
I need cell A11 to reference A3 on the data sheet and so on.
Is this possible?
Given:
Formula in cell A1: =Data!A1
Formula in cell A6: =Data!A2
I need cell A11 to reference A3 on the data sheet and so on.
Is this possible?
Luke
Sub Step5()i = 1
r = 1
Do
Cells(r, 1).Formula = "=Data!A" & i
r = r + 5
i = i + 1
Loop Until Sheets("Data").Cells(i, 1) = ""
End Sub
Thank you this worked
=IF(MOD(ROWS($A$1:$A1)-1,5),"",INDEX(Data!$A:$A,CEILING(ROWS($A$1:$A1),5)/5))