Loop through reports and extract title
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 ...