Quarter()

Returns the quarter the referenced date falls within (1,2,3,4)

Usage

NUMERIC = Quarter( date )
Argument Summary
date date

Calling

Supports named-parameter calling allowing you to use the function like:

Quarter(
   date=?
);

Supports passing parameters as a structure using ArgumentCollection:

Quarter( ArgumentCollection={
   date : ?
} );