I have a linear serie of number as input 1 2 3 4 5 6 7 8 9 to 104
and I would like to replace the numbers of this serie by this kind of serie 1 2 3 4 5 6 1 2 3 4 5 6 … until 104
Do you have some Idea, the idea is to bake the number after as text or annotation point
you can create a series 1…6 and then duplicate the data math.ceil(104/6) [this can be done with the division and the round components] times. If you have to, you can split the list at precisely the 104th item so that it doesn’t keep going after that item.