Does this little script help you in what you want. It takes the specified table, saves it to Excel and then opens the Excel file.
txnelson_0-1629530783783.png
Names Default To Here( 1 );
newDT = (Current Report())["REML Variance Component Estimates"][Table Box( 1 )] << make into data table( invisible );
newDT << save as( "$TEMP/newDT.xlsx" );
Close( newDT, nosave );
Web( "$TEMP/newDT.xlsx" );
txnelson_1-1629530843112.png
Jim