Below is my code. I want to hide only those columns ( more then 20) after I have imported the file in the SAS format. DATA work1.AAA_import; SET work.AAA_import; drop orgID org_name surveyID RUN; I wrote this code . is there any other way to hide the larger number of column. thank you
... View more