Hi, I would like to create a nice summary of what macro has done in the SAS log window, so users see exactly what happened. For that reason, I have prepared a dataset and would like to route it to the log window with proc report or other printing procedure. In batch mode, this can be done with filename outfile "location of log file"; proc printto file=outfile new; run; Could this be done in any way also in interactive runs? I wouldn't want to use put statements or anything like that as formatting of information becomes quite difficult. Below please see an example of what I would like to go into the log: Package Dependency Dependency type Version Download Status ------------------------------------------------------------------------------------------------------------ VIM 6.0.0 Downloaded car Depends >=1.9.4 colorspace Depends MASS Imports Thanks in advance, Marcin
... View more