Hi,
I have a script that dynamically parses some of the info for stack table and would like to store the stack table as a new data table.
ystr1 = ":INFRASTRUCTURE Value, :INFRASTRUCTURE Value 1"
infr = "Infrastructure Value";
data = "PPT";
output_name = "infra_updated.jmp";
gbStr = EvalInsert("dt << Stack(
columns(
^ystr1^
),
Source Label Column(^infr^ ),
Stacked Data Column(^data^),
Output Table(^output_name^ )
)"
);
Eval(Parse(gbStr));
I am getting the following error
Name Unresolved: infra_updated..jmp in access or evaluation of 'infra_updated.jmp'
Unable to figure out why EvalInsert doesn't work for Output Table