
Originally Posted by
JBeaucaire
1) Put this reference formula in A1: =CEILING(ROW()/47, 1)+1
2) Now change over to and INDEX() formula to pull values from the other sheet. For instance here are some sample formulas, you can add the missing using these techniques
B3: =INDEX(List!H:H, A1)
C3: =INDEX(List!I:I, A1)
G3: =IF(INDEX(List!J:J, A1)=0, "x", INDEX(List!J:J, A1))
C7: =INDEX(List!V:V, A1)
E17: =CHOOSE(INDEX(List!Y:Y,A1)+1, "No", "Yes", "Unconfirmed")
E19: =CHOOSE(INDEX(List!Z:Z,A1)+1, "No", "Yes", "Unconfirmed")
B26: =IF(INDEX(List!CO:CO, A1) ="N", "x", INDEX(List!CO:CO, A1))
E26: =IF(INDEX(List!CP:CP, A1)="N", "x", INDEX(List!CP:CP, A1))
B28: =IF(INDEX(List!CQ:CQ, A1)="N", "x", INDEX(List!CQ:CQ, A1))
B30: =IF(INDEX(List!BL:BL, A1)=300, "Yes", "No")
D33: =SUBSTITUTE(SUBSTITUTE(INDEX(List!BJ:BJ, A1), "N", "No"), "Y", "Yes")
D39: =LOOKUP(INDEX(List!AY:AY, A1), {"Blank","N","Yes"}, {"x","No","Yes"})
3) Now you can copy A1:I47 and paste below as many times as you wish, each new section will use the next row from the LIST.
Bookmarks