@Assaf1,
Do you need the formula to be in a table ? I can offer the following solution that works :
dt = Current Data Table(); // Ensure your data table is open and it is current
Vals = :Column 1 << Get Values; // Get Values out
Res = List(); // Define empty list
for(i = 1 , i <= N Items(Vals), i++,
Test = Words(Vals[i],"_"); // Words is the function that will split your string by delimiter
Insert Into(Res,Test[N Items(Test)]);
);
Show(Res);
Alternatively,
You could use a similar approach to parse out the strings separated by the delimiter in a column formula as well, by using the following as a column formula:
Words(:Column 1, "_")
But then, I can't really think of a way to get the last string out in the column formula. Hope this helps some. Maybe look at "Substr" function - it might help
Best
Uday