Which date functions advances a date time or date/time
value by agiven interval?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What’s the difference between var b1 – b3 and var b1 — b3?

822


What is maximum number of rows and cols can be handled in SAS?

849


How do you specify the number of iterations and specific condition within a single do loop?

615


is data integration and etl programming is same? : Sas-di

573


This entry was posted in General. Bookmark the permalink. Post a comment or leave

4022






What are the applications primarily used by business analyst? : Sas-bi

550


What is the difference between order and group variable in proc report?

831


What commands are used in the case of including or excluding any specific variables in the data set?

585


Compare sas with other data analytics tools.

575


Do you need to rearrange the order of the data for the report?

1829


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.

1772


how does sas handle missing values in procs? : Sas programming

634


What is the length assigned to the target variable by the scan function?

668


How do you define proc in sas? : sas-grid-administration

665


Explain how you can debug and test your SAS program?

563