How to generate HCPCS 2009 long description

data two; infile ‘https://www.cms.gov/HCPCSReleaseCodeSets/Downloads/INDEX2009.pdf’ truncover; input @1 code $5. @7 description $200.; if code=’Page ‘ then delete; if code=’ ‘ then delete;run;proc sort data=two; by code;run;proc tr…

Text output in friendly format

Format output for cut-and-paste from the output window
This is less of a trick and more of a tip, I guess.  The SAS output window is displayed in SAS Monotype font.  This is a hassle when you need to cut-and-paste into, say, a word document, …