Right now, I have a bunch of data stored in a field and it's a series of numbers separated by commas:
ID      Values 
235077  8185,8186,8187,8188,8189,8190,8191,9241,9244,9245,1,2,3,4,5,9
246576  1,2,3,4,5,9
114507  1,2,3,4,5,6,9
256493  8166,8167,8168,8169,8170,8171,8172,20198,20201,20202,20204,20205,20207,20209,1,2,3,4,5,9
256518  1,2,3,4,5,6,9
234587  1,2,3,4,5,9
256513  1,2,3,4,5,9
242822  8166,8167,8168,8169,8170,8171,8172,20198,20201,20202,20204,20205,20207,20209,1,2,3,4,5,9
256510  1,2,3,4,5,9
183173  1,2,3,4,5,9
256463  8185,8186,8187,8188,8189,8190,8191,9241,9244,9245,1,2,3,4,5,9
255102  1,2,3,4,5,9
253850  1559,1560,1561,1562,2728,1,2,3,4,5,9
240286  9239,9242,1,2,3,4,5,8
64154   1,2,3,4,5,9
232844  1,2,3,4,5,9
246571  4317,1,2,3,4,5,9
What I would like to do is manipulate the data in such a way where I can not only separate the values out, but pull them all into one column that corresponds with their IDs. So using 64154 as an example:
ID     Values
65414     1
65414     2
65414     3
65414     4
65414     5
65414     9
I'm sure this would involve some sort of Regex function, but in terms of cascading the data in the manner above has me lost.
 
     
    