Does anybody have SAS Training manual or documentation or
can you refer me any book to have better understanding on
SAS. I am fresher to SAS tool. (Ready to pay)
Answer Posted / rg
Base SAS Certification Guide.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
what are the considerations when picking a SAS/STAT procedure?
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
How do you specify the number of iterations and specific condition within a single do loop?
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
What is the work of tranwrd function?
How to create a permanent sas data set?
Name few SAS functions?
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.
how do the in= variables improve the capability of a merge? : Sas programming
what are the component of range? : Sas-bi
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
What is the differnce between SDTM 3.1.2 to 3.1.1 version
Give e an example of..