Here is an example script that should get you going with solving your problem. All of the functions used in the script are documented with examples in the Scripting Index, available under the Help pull down menu
Names Default To Here( 1 );
dt = Current Data Table();
For Each Row(
If( Contains( :merge, "Alc =" ),
:Alc % = Num( Word( 2, Substr( :merge, Contains( :merge, "Alc =" ) ), "=%" ) ) / 100
);
If( Contains( :merge, "Rs =" ),
:Rs % = Num( Word( 2, Substr( :merge, Contains( :merge, "Rs =" ) ), "=%" ) ) / 100
);
If( Contains( :merge, "VA =" ),
:VA ppm = Num( Word( 2, Substr( :merge, Contains( :merge, "VA =" ) ), "=p" ) )
);
If( Contains( :merge, "Approved" ),
:Approved By = Word( 3, Substr( :merge, Contains( :merge, "Approved" ) ), " :" )
);
);
Jim