Previous PageNext Page

SAS Date Constants
SAS dates may be represented as constants and used in equations and assignment statements, for example.

date = "25DEC1999"d;

This looks like we are assigning a character constant to DATE, but look again. The "d" at the end signifies that this is a date constant.

Previous PageTable Of ContentsNext Page