Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 11
Program 11h
INTNX function for the current time period


*
  Professional SAS Programming Secrets
  Program 11h
  INTNX function for the current time period
*;
data _null_;
   date = 5000;
   month_i = intnx('month', date, 0);
   month_o = intnx('month', date, 0, 'e');
   year_i = intnx('year', date, 0);
   year_o = intnx('year', date, 0, 'e');
   put (_all_) (= date9.);
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections