How to retrieve tabulated values by script
Dear Community,
Based on the Tabulated output below, please how can I retrieve the amounts for categories 1, 2, 3 by script?
Based on another working script I`m currently there in my tries:
r = TabulateQuantiles << report;
tb_TabQuant = r[Table Box( 1 )];
tb_TabQuant << GetText;
QuantAmount1 = tb_TabQuant[2][1];
QuantAmount2 = tb_TabQuant[2][2];
QuantAmount3 = tb_TabQuant[2][2];
Show(QuantA
...