Hey everyone, i have a simple problem that i am struggeling with.
I've looked in various discussions but i cannot get it to work.
I have a string with column names which i am loading from a separate file, and i want use that string as a column in the control chart builder like this:
string="Concentration (‰)";
Control Chart Builder(
Size( 480, 350 ),
Show Two Shewhart Charts( 0 ),
Show Control Panel( 0 ),
Show Capability( 0 ),
Variables(
Subgroup( :RowNumber ),
Subgroup( :BatchID, Position( 1 ) ),
Y(:name(string)) // SET THE STRING IN HERE
),
Chart( Points( Statistic( "Individual" ) ), Limits( Sigma( Levey Jennings ) ) )
);
How do i get the Y variaible to accept the string as a column name?
Thanks in advance,
Daniel