Does anybody has lastest SAS certification dumps,if anybody
has please mail me at akshara_SAS@ymail.com
Thanks
Akshara
Answer Posted / vara
Hi All,
Is there any kind person who can share the latest advanced SAS dump with vp_reddy2003@yahoo.com
Thanks in advance.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
explain what is data set in sas? : Sas-administrator
What are the features of base sas system?
What is the general format of function in sas? : sas-grid-administration
Mention few capabilities of sas framework.
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.
what can you learn from the sas log when debugging? : Sas programming
how do you want missing values handled? : Sas programming
How many ways to overcome a missing values???
What are the automatic variables for macro? : sas-macro
what are sas/access and sas/connect? : Sas programming
Briefly explain input and put function?
What will calendar procedure do?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
what are some good sas programming practices for processing very large data sets? : Sas programming
Did you used proc test? when?