MonthNumber (PQL)
Returns the month number from a date-time
- Returned Output: Integer
- Library: PQL \ Common \ Date-Time
- Version: 2023.02.000
- Compatibility:
- Can be combined with and other PQL function throughout the application.
- It CANNOT be used with MDX or VBA functions. But it can be used on MDX-based content in other parts of the application.
Syntax
MonthNumber( <Date-Time> )
* Click on the function's arguments above for more details on the input values.
Comments
Examples
This example returns a column with the month number of each date-time item in the Order Date column.
MonthNumber( [Data].[OrderDate] )
You can see the effect from this example snippet in column #8, based on the original date column in position #1.