SAS: add comment to lst ouput file
        Posted  
        
            by Dan
        on Super User
        
        See other posts from Super User
        
            or by Dan
        
        
        
        Published on 2010-03-24T16:57:49Z
        Indexed on 
            2010/03/24
            17:03 UTC
        
        
        Read the original article
        Hit count: 539
        
sas
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
© Super User or respective owner