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 |
what are all the ways to define macro variable??
2 Answers GSK GlaxoSmithKline,
At compile time when a SAS data set is read, what items are created?
What is the difference between an informat and a format. Name three informats or formats.
What would be the value of month at the end of data step execution and how many observations would be there?
How do handle working under pressure?
Where do you use proc means over proc freq?
describe about metadata object? : Sas-di
where to use sas business intelligence? : Sas-bi
Explain the difference between informat and format with an example.
Briefly explain input and put function?
What makes sas stand out to be the best over other data analytics tools?
how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too