Hello,
I am trying to loop through all reports generated from an ANOVA-oneway. I create a list of the reports anova_list.
If I manually try to extract the title from a report with the following syntaxt
curr_anova = anova_list[1]
report_title = curr_anova << report << get title("string")
the output is what I expect - some variation of: Oneway Analysis of Y by X by1=by1val by2=by2val ...
But when I try to do this in a loop
for(i = 1, i<= n items(anova_list), i++,
curr_anova = anova_list[i]
report_title = curr_anova << report << get title("string")
)
the output of report_title is DisplayBox[OutlineBox].
Am I making an oversight on the syntax? I have tried different combinations of evals to see if the output change, to no avail.