I have a data set with multiple values for a single column I am trying to separate them using "," as my delimiter.
my data looks like this:
A:            B:           C:
1             A,B,C,D      Square
2             E,F          Triangle
3             G,H,I        Circle
I am trying to process it in such a way as to get these results:
A:           B:           C:
1            A            Square
1            B            Square
1            C            Square
1            D            Square
2            E            Triangle 
2            E            Triangle
3            G            Circle
3            G            Circle
3            I            Circle
Does anyone have any suggestions?
 
    