I am using an Excel spreadsheet in order to auto increase numbers within text. I have been using the rows function to auto increase numbers by 1: `="text"&ROWS(A$1:A1)&"text"
This produces the following output:
(CELL A:1) text1 (CELL A:2) text2 (CELL A:3) text3..etc
I now need add to another number which repeats itself 7 times and then increases by 1. I also need another number which runs from 1 to 6 and then repeats this cycle. This would produce the following output:
(CELL A:1) text1 text1 text1
(CELL A:2) text2 text1 text2
(CELL A:3) text3 text1 text3
(CELL A:4) text4 text1 text4
(CELL A:5) text5 text1 text5
(CELL A:6) text6 text1 text6
(CELL A:7) text7 text1 text7
(CELL A:8) text8 text2 text1
(CELL A:9) text9 text2 text2
(CELL A:10) text10 text2 text3
(CELL A:11) text11 text2 text4
(CELL A:12) text12 text2 text5
(CELL A:13) text13 text2 text6
(CELL A:14) text14 text2 text7 ...etc
Many thanks in advance.