Which date functions advances a date time or date/time
value by agiven interval?
Answers were Sorted based on User's Feedback
Answer / sai krishna
Using INTNX as
c=intnx(interval,date,n);
data u;
c=intnx(month,'01jan08'd,1);
run;
the result for c would be 01feb08
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / amit
its INTCK, which computes number of interval b\w two dates
| Is This Answer Correct ? | 1 Yes | 5 No |
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
how do the in= variables improve the capability of a merge? : Sas programming
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
Are the preferred term counts are always equal to Body system counts? If so, Why are they equal if not why they are not equal?
What is the purpose of _error_?
Does anybody has SAS Platform Administration certification dumps. pls send to hariithepalli@gmail.com
How would you include common or reuse code to be processed along with your statements?
when we are using the PROC TRANSPOSE? OBSERVATIONS are repeated then what will happen and what it will show in log window.
What do the PUT and INPUT functions do?
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
what is SAS ACCESS AND SAS CONNECT ? Give an example and data statements used.
Explain proc univariate?