Previous Page | Next Page

Informats

YYQw. Informat



Reads quarters of the year in the form yyQq or yyyyQq.
Category: Date and Time

Syntax
Syntax Description
Details
Examples
See Also

Syntax

YYQw.

Syntax Description

w

specifies the width of the input field.

Default: 6 (For SAS version 6, the default is 4.)
Range: 4-32 (For SAS version 6, the range is 4-6.)

Details

The quarter must be in the form yyQq or yyyyQq, where

yy or yyyy

is an integer that represents the two-digit or four-digit year.

q

is an integer (1, 2, 3, or 4) that represents the quarter of the year. You can also represent the quarter as 01, 02, 03, or 04.

The letter Q must separate the year value and the quarter value. The year value, the letter Q, and the quarter value cannot be separated by blanks. A value that is read with YYQw. produces a SAS date value that corresponds to the first day of the specified quarter.

Note:   SAS interprets a two-digit year as belonging to the 100-year span that is defined by the YEARCUTOFF= system option.  [cautionend]


Examples

input quarter yyq9.; 

Data Line Results
----+----1----+

05Q2
16527
05Q02
16527
2005Q02
16527


See Also

Functions:

QTR Function

YEAR Function

YYQ Function

System Option:

YEARCUTOFF= System Option

Previous Page | Next Page | Top of Page