Hello

I have a list of 2,000+ cells and they are filled with numbers like 1,10,6,3,16, in column C.
I'm trying to extract each number to the next cell over i.e. D1 = 1 E1 = 10 F1 = 6 G1 = 3 H1 = 16

I am able to get the first number using =LEFT(C25,FIND(",",C25,1)-1) , but I have no idea how to get find to recognize the
second, third or fourth occurrence of a comma.

Maybe I'm approaching this the wrong way...