So I have a cell that looks like this:
Dog; 1, Cat; 2, Bird; 6, Pig; 4
I would like to dump all the animal names (items that come before the ";") into one column and in the column next to it dump all the numbers (items that come before the ","). So in the end it would look something like this:
Column A Column B
Dog 1
Cat 2
Bird 6
Pig 4
I've done splits before but not with multiple delimiters?
Bookmarks