Hi all,
New to the forums, keep up the good work.
Getting stuck on getting a cell with a value of 1-10, separated out into its individual values i.e 1,2,3,4,5,6,7,8,9,10
Another example is 50-60 again, i want to separated the values out like: 50,51,52... and so on...
Can anyone help?
I managed to get some info how it might be possible, but gettig stuck on a working formula in Excel 2016.
Excel complains on the <code>A1,FIND portion where trying to find values separated by a hyphen =-=
Hoe someone can help?
Thanks very much.
</code>
New to the forums, keep up the good work.
Getting stuck on getting a cell with a value of 1-10, separated out into its individual values i.e 1,2,3,4,5,6,7,8,9,10
Another example is 50-60 again, i want to separated the values out like: 50,51,52... and so on...
Can anyone help?
I managed to get some info how it might be possible, but gettig stuck on a working formula in Excel 2016.
Code:
<code>=SUBSTITUTE(TRIM(CONCAT(ROW(INDIRECT(LEFT(A1,FIND("-",A1)-1)&":"&MID(A1,FIND("-",A1)+1,999)))&" "))," ",",")</code>
Excel complains on the <code>A1,FIND portion where trying to find values separated by a hyphen =-=
Hoe someone can help?
Thanks very much.
</code>