So sent to an output file. Is there a way to remove _name_ field from displaying and only display just the 3 variables or just display just records? i don't want it really to create a report but not sure if proc print had the capability to just spit out report like my example? The SAS System IDNUM _Name_ customer1 customer2 customer3 123456789 INFO 0001 0004138 00000112.50 0001 0009289 00000054.36 341087625 INFO 0001 0004138 00000112.50 0001 0009289 00000054.36 0001 0009289 00000054.36 New output would just have the 2 records? Example 123456789 INFO 0001 0004138 00000112.50 0001 0009289 00000054.36 341087625 INFO 0001 0004138 00000112.50 0001 0009289 00000054.36 0001 0009289 00000054.36 sas : OPTIONS NODATE PAGENO=1 LINESIZE=100 PAGESIZE=40; PROC TRANSPOSE DATA=WORK1 OUT=WORK2 PREFIX=CUSTOMER; BY IDNUM; VAR INFO; PROC PRINTTO PRINT=OUTPUT1; PROC PRINT DATA=WORK2 NOOBS;
... View more