Can somebody help me out with the following??
Column1 = char(ColumnName(1));
Column2 = char(ColumnName(2));
Eval(Parse(EvalInsert("\[
obj << simulator(
1,
Factors(
AB << Random( ^distNameOne^( ^strParameterOne^ ) ),
^Column2^ << Random( ^distNameTwo^( ^strParameterTwo^ ) )
),
Responses(
:Column 3 << No Noise
),
Automatic Historam Update(1),
Simulate
);
]\")));
If I name the first column "AB" manually, the profiler works fine for it. However attempting to automatically use the column name as in Column2 does not work. Any ideas on how to get it to work?
Thanks