It does print the same thing because that is not what PROC REPORT is intended to do. PROC REPORT is for printing reports. Not sure what value is gotten out of saving the data it generated, but if you want that to reprint you probably need to use a different PROC REPORT step that the one you used to generate those statistics.
It will probably be much easier to just use normal SAS code to generate the statistics, like the PROC SUMMARY step I showed. Then you can print it with PROC PRINT or perhaps with PROC REPORT if you want some formatting that PROC PRINT cannot do.
Of if you literally need the same output printed over and over then perhaps use PROC DOCUMENT to copy the ODS generate output multiple times?
... View more