Hello everyone,
Just created my account as this is the first time I'm having to ask a specific question since I couldn't find a solution from just searching or googling...
I'm presented with a list of strings that include a combination of numbers, commas and dashes that can look like the following:
1,2,3
1,4-6
10-25,44
From these I have to extract all individual numbers into a column. For example:
1,2,3 becomes a list with {1,2,3}
1,4-6 becomes a list with {1,4,5,6}
10-25,44 becomes a list with {10,11,...24,25,44}
I'm looking for either a VBA or non VBA solution, any help or guidance is appreciated!
Just created my account as this is the first time I'm having to ask a specific question since I couldn't find a solution from just searching or googling...
I'm presented with a list of strings that include a combination of numbers, commas and dashes that can look like the following:
1,2,3
1,4-6
10-25,44
From these I have to extract all individual numbers into a column. For example:
1,2,3 becomes a list with {1,2,3}
1,4-6 becomes a list with {1,4,5,6}
10-25,44 becomes a list with {10,11,...24,25,44}
I'm looking for either a VBA or non VBA solution, any help or guidance is appreciated!