Returns the date, time, or datetime interval at the next higher seasonal cycle when a date, time, or datetime interval is specified.
Category: | Date and Time |
specifies a character constant, a variable, or an expression that contains an interval name such as WEEK, MONTH, or QTR. Interval can appear in uppercase or lowercase. The possible values of interval are listed in Intervals Used with Date and Time Functions in SAS Language Reference: Concepts.
The three parts of the interval name are listed below:
specifies the name of the basic interval type. For example, YEAR specifies yearly intervals.
specifies an optional multiplier that sets the interval equal to a multiple of the period of the basic interval type. For example, the interval YEAR2 consists of two-year, or biennial, periods.
See | Incrementing Dates and Times by Using Multipliers and by Shifting Intervals for more information. |
specifies an optional shift index that shifts the interval to start at a specified subperiod starting point. For example, YEAR.3 specifies yearly periods shifted to start on the first of March of each calendar year and to end in February of the following year.
Restrictions | The shift index cannot be greater than the number of subperiods in the whole interval. For example, you could use YEAR2.24, but YEAR2.25 would be an error because there is no 25th month in a two-year interval. |
If the default shift period is the same as the interval type, then only multiperiod intervals can be shifted with the optional shift index. For example, because MONTH type intervals shift by MONTH subperiods by default, monthly intervals cannot be shifted with the shift index. However, bimonthly intervals can be shifted with the shift index, because there are two MONTH intervals in each MONTH2 interval. For example, the interval name MONTH2.2 specifies bimonthly periods starting on the first day of even-numbered months. | |
See | Incrementing Dates and Times by Using Multipliers and by Shifting Intervals for more information. |
specifies a numeric value.
Example | In the following example, the function INTCYCLE('MONTH', 3);has a seasonality argument and returns the value QTR. The function INTCYCLE('MONTH');does not have a seasonality argument and returns the value YEAR. |
INTCYCLE('MONTH');
returns the value YEAR because the months from January through December
constitute a yearly cycle. INTCYCLE('DAY');
returns the value WEEK because the days from Sunday through Saturday
constitute a weekly cycle.