what is _error_?
Answers were Sorted based on User's Feedback
Answer / manish thakur
_error_ is created when pdv is generated along with _n_
if the value of _error_ is 0 then there is no error
if the value of _error_ is 1 then there is an error...
| Is This Answer Correct ? | 17 Yes | 0 No |
Answer / varun
It is automatic variable and component of PDV. the value for _ERROR_ can be 1 or 0 and is helpful Error trapping.
| Is This Answer Correct ? | 17 Yes | 3 No |
how do u validate sas program
At compile time when a SAS data set is read, what items are created?
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 procedure you used to calculate p-value?
2 Answers Accenture, Quintiles,
what is Difference between PROC SQL JOINS and MERGE?
I am having a stored process.it needs to route my report to both hthml and Xls.By default SP routes to html.I used the PRINTTO to route the html to Xls.BUt it createsthe file not but no content was written to file(0KB)?how can i do it?
We want to merge file A and B. File A has variable age, file B provide birthdate. How to merge the data according to age in file B
What is LOGICAL VARIABLES in SAS.And how it can be used..Can anyone support..???
Do you need to combine data sets? How should you combine data sets– MERGE or SET statements in DATA steps,PROC APPEND,PROC SQL?
How we can create SAS USER DEFINED CODE?
What is the difference between SAS Data step and SAS PROC SQL, and which is better?
what is the difference between %put and symbolgen?