The REPLAY statement enables you to display a previously saved result table or set of tables. The REPLAY statement displays the saved result tables regardless of the NOPRINT option. This enables you to suppress output generation with the NOPRINT option and to then display the tables that you want in a different order.
proc imstat data=sales.prdsale noprint; fetch country region actual / save=salestab from=1 to=5; fetch predict actual / save=predicttab from=1 to=10; replay predicttab salestab; quit;