DayOfWeekName (PQL)
Returns the name of the day of week. Optional flag can be set to “LONG” or “SHORT”, where “LONG” will return “Monday” and “SHORT” will return “Mon”.
- Returned Output: Text
- Library: PQL \ Granular \ Date-Time
- Version: 2023.13.000
- Compatibility: Pyramid Query Language (PQL) data sources
Syntax
DayOfWeekName( <Column DateTime> , OPTIONAL <Flag> )
* Click on the function's arguments above for more details on the input values.
Comments
- The column needs to be an attribute with date-time values in the model. (The data type needs to be 'date-time.')
- The value returned is based on a natural calendar period.
- For details on how to employ and use this function see the custom column overview.
Different Function types
- This function is similar to the PQL semantic and common functions of the same name. However, it operates on a column directly at the grain.
- As a granular function, it is used in the base SQL query itself.
Examples
This example returns a column with the name of the day of the week of each date-time item in the Order Date column:
DayOfWeekName([Data].[OrderDate])
You can see the effect from this example snippet in column #2, based on the original date column in position #1: