SAS: add comment to lst ouput file

Posted by Dan on Stack Overflow See other posts from Stack Overflow or by Dan
Published on 2010-03-24T16:57:49Z Indexed on 2010/03/26 6:43 UTC
Read the original article Hit count: 493

Filed under:

In SAS, How do I add comments to my .LST output file. Like adding a comment saying "This is the output for tbl_TestMacro:" right before doing a proc print? So that my output file will read:

This is the output for tbl_TestMacro:
Obs    field1    field2

 1        6         8  
 2        6         9  
 3        7         0  
 4        7         1  

Instead of just:

Obs    field1    field2

 1        6         8  
 2        6         9  
 3        7         0  
 4        7         1  

Thanks, Dan

© Stack Overflow or respective owner

Related posts about sas