What statement do you code to tell SAS that it is to write to an external file? What statement do you code to write the record to the file?
2 10165If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?
7 23780If you’re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
8 20793Have you ever linked SAS code? If so, describe the link and any required statements used to either process the code or the step itself.
2 9610When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
2 8309If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
10 19749Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.
7 15650
Differentiate between proc means and proc summary.
Which date function advances a date, time or datetime value by a given interval?
Explain append procedure?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
what are all the reports you generated in your recent project?
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 is metadata? : Sas-bi
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro
What is PROC in SAS?
What is PDV?
Explain the difference between nodup and nodupkey options?
what do the pad and dim functions do? : Sas programming
Tell e how how dealt with..
Mention what are the data types does SAS contain?
Differentiate between ceil and floor functions.