Forum Discussion
JersonGomez
Oct 05, 2023Copper Contributor
Fill a column sequentially with individual cells repeated
Good day, I'm trying to fill a column that references a different sheet like this: ='Historic'!F175 ='Historic'!G175 ='Historic'!F176 ='Historic'!G176 ='Historic'!F177 ='Historic'!G177 ='...
- Oct 05, 2023
Let's say the first formula is in B2. Change it to
=INDEX(Historic!$F$175:$G$1000000, QUOTIENT(ROW(B2)-ROW($B$2), 2)+1, MOD(ROW(B2)-ROW($B$2), 2)+1)
If it is in another cell. adjust B2 and $B$2 to that cell.
Fill down.
HansVogelaar
Oct 05, 2023MVP
Let's say the first formula is in B2. Change it to
=INDEX(Historic!$F$175:$G$1000000, QUOTIENT(ROW(B2)-ROW($B$2), 2)+1, MOD(ROW(B2)-ROW($B$2), 2)+1)
If it is in another cell. adjust B2 and $B$2 to that cell.
Fill down.
- JersonGomezOct 12, 2023Copper ContributorThank you so much!