Can somebody help me to create an excel vba code below
For each cell in column 2 "Sequence", I want to split an string by a comma "," and store unique string in an array and populate the result in column 4!
Sorry, I can't attach a photo, there is an error, below is the details.
column 2
row 1 - R001,R002,R003,R004
row 2 - R003,R004,R005,R006
row 3 - R006,R009,R010,R011
column 4 (result should be)
row 1 - R001
row 2 - R002
row 3 - R003
row 4 - R004
row 5 - R005
row 6 - R006
row 7 - R009
row 8 - R010
row 9 - R011