Hi Jacob,
Default way is to create few variables to get strings from the first 4 sections and concatenate them.
v_Length = Length([Dim])
v_Section1 = Substr([Dim] ; 1 ; Pos([Dim];";")-1)
v_DimforSection2 = Substr([Dim] ; Length([v_Section1])+1 ; [v_Length])
v_Section 2 = Substr([v_DimforSection2] ; 1 ; Pos([v_DimforSection2])-1)
and so on
Makes sense?
Thanks,
Mahboob Mohammed