hi @r_voyager
you can do the following assuming your Text = varMulDelm:
First number: With({_Place:First(Split(varMulDelm,",")).Result}, Right(_Place,Len(_Place)-Find(":",_Place)))
Second: With({_Place:Last(FirstN(Split(varMulDelm,","),2)).Result}, Right(_Place,Len(_Place)-Find(":",_Place)))
Third: With({_Place:Last(FirstN(Split(varMulDelm,","),3)).Result}, Right(_Place,Len(_Place)-Find(":",_Place)))
Fourth: With({_Place:Last(FirstN(Split(varMulDelm,","),4)).Result}, Right(_Place,Len(_Place)-Find(":",_Place)))
Fifth: With({_Place:Last(FirstN(Split(varMulDelm,","),5)).Result}, Right(_Place,Len(_Place)-Find(":",_Place)))
Sixth: With({_Place:Last(FirstN(Split(varMulDelm,","),6)).Result}, Right(_Place,Len(_Place)-Find(":",_Place)))
Hope it helps,
R