Month()

Returns the month of the referenced date (1=Jan .. 12=Dec)

Usage

NUMERIC = Month( date )
Argument Summary
date date

Calling

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

Month(
   date=?
);

Supports passing parameters as a structure using ArgumentCollection:

Month( ArgumentCollection={
   date : ?
} );