. Which date advances a date, time or date/time value by a
given interval?
Answer Posted / pambrose
Here is the detailed usage of intnx function
date1=intnx('month','01jan95'd,5,'beginning');
put date1 / date1 date7.;
date2=intnx('month','01jan95'd,5,'middle');
put date2 / date2 date7.;
date3=intnx('month','01jan95'd,5,'end');
put date3 / date3 date7.;
date4=intnx('month','01jan95'd,5,'sameday');
put date4 / date4 date7.;
date5=intnx('month','15mar2000'd,5,'same');
put date5 / date5 date9.;
interval='month';
date='1sep2001'd;
align='m';
date4=intnx(interval,date,2,align)
;put date4 / date4 date7.;
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain the use of proc print and proc contents?
How would you identify a macro variable?
explain about various caches available in data integrator? : Sas-di
How are numeric and character missing values represented internally?
In sas, what are the areas that you are most interested in? : sas-grid-administration
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
for what purpose would you use the retain statement? : Sas programming
What are the different versions of sas that you have used until now? : sas-grid-administration
what is program data vector? : Sas-administrator
where are dashboard components are created and maintained? : Sas-bi
What is the difference between the proc sql and data step?
Approximately what date is represented by the SAS date value of 730?
Describe the function and untility of the most difficult SAS macro that you have written.
What is your favorite all time computer book? Why?
Mention common programming errors committed in sas ?