In PROC PRINT, can you print only variables that begin with
the letter “A”?

Answer Posted / parbhat517

PROC PRINT DATA = X;
WHERE SUBSTR(NAME,1,1) = 'A';
RUN;

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how do the in= variables improve the capability of a merge? : Sas programming

936


what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming

694


what is the difference between nodup and nodupkey options? : Sas programming

625


What is the general format of function in sas? : sas-grid-administration

573


What are the best sas programming practices for handling very large datasets? : sas-grid-administration

571






What are the ways to do a “table lookup” in sas?

595


How to limit decimal places for variable using proc means?

592


what is sas business intelligence? : Sas-bi

590


Hello, I have PROC SQLs results group by 3 fields and I use SUM and COUNT functions in SQL. The problem is when I try to display my result with PROC TABULATE. I am getting very big numbers. I believe I make a mistake some where in Tabulate. Here is my Proc Tabulate. PROC TABULATE DATA=OUT04_05 FORMAT=12.; CLASS YR CENTRE VISA / PRELOADFMT EXCLUSIVE; VAR NEWUSER FRAUD TRANSFER AUTUSER REISSUE; TABLE CENTRE ALL, (YR ALL)*VISA, (NEWUSER*F=COMMA12. AUTUSER*F=COMMA12. FRAUD*F=COMMA12. TRANSFER*F=COMMA12. REISSUE*F=COMMA12.) / MISSTEXT={LABEL='0'} PRINTMISS RTS=20; FORMAT VISA VISAFMT.; KEYLABEL SUM = ' ' ALL = 'TOTAL'; LABEL YR = 'DATE YEAR' NEWUSER = 'TOTAL NEW ACCT' TRANSFER = 'TOTAL TRANSFER' FRAUD = 'TOTAL FRAUD TRANSFER' AUTUSER = 'TOTAL AUTH USERS' REISSUE = 'TOTAL REISSUE'; When I code it like : NEWUSER*N*F=COMMA12. AUTUSER*N*F=COMMA12. I get same amount numbers but to find a NEWUSER I use COUNT(*) and to find AUTUSER I use SUM(xxxx) function so both result shouldn’t be the same my problem is in this point. Could you tell me where the problem in code is. How can I display my result? TX.

1782


Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.

1465


What are the uses of sas?

709


How do you test for missing values?

1062


what is the one statement to set the criteria of data that can be coded in any step? : Sas programming

653


hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?

1665


what does the run statement do? : Sas programming

560