[Solved] How to split a cell of many numbers by group of 3-3 in each next cells?


So, brutal but does work:

=LEFT(A1,FIND(",",A1,FIND(",",A1,FIND(",",A1,1)+1)+1)-1)

You can play with MID() and RIGHT() to get others….

See
enter image description here

solved How to split a cell of many numbers by group of 3-3 in each next cells?