I am trying to take a 3 part Unique ID with delimiters and separate it at the delimiters. I can achieve this for the first 2, but not the last part.
ex: 123-0542-236541
LEFT(NAME(ITEM(LIST)), Delimiter in Item Name - 1) = 123
RIGHT(NAME(ITEM(LIST)), Delimiter in Item Name) = 0542
Delimiter in Item Name = FIND("-", Item Name)
Item Name= NAME(ITEM(LIST))
I can not parse the digits after the last delimiter. Anyone? Is it possible? Any Ideas on how to parse it a different way?