. 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
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
How do you delete duplicate observations in sas?
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
Differentiate between format and informat? : sas-grid-administration
how does sas handle missing values in functions? : Sas programming
describe how to adjust the performance of data integrator? : Sas-di
In proc transpose and data step with arrays which one you pick?
how does sas handle missing values in assignment statements? : Sas programming
Briefly explain input and put function?
What are the different versions of sas that you have used until now? : sas-grid-administration
what do the pad and dim functions do? : Sas programming
What is a macro routine?
how do you want missing values handled? : Sas programming
Can you explain the process of calendar?
What are the different types of sas functions?