Forum Discussion

JersonGomez's avatar
JersonGomez
Copper Contributor
Oct 05, 2023
Solved

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 ='...
  • HansVogelaar's avatar
    Oct 05, 2023

    JersonGomez 

    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.

Resources