ThirdQuartile (PQL)
Executes third quartile aggregation on a column of data from the model. The column must contain numerical data for it to be functional.
- Returned Output: Numeric
- Library: PQL \ Granular \ Aggregate
- Version: 2018.00.000
- Compatibility: Pyramid Query Language (PQL) data sources
Syntax
ThirdQuartile( <Measure> )
* Click on the function's arguments above for more details on the input values.
Comments
- The "measure" column needs to be the name of the column in the model [table].[column name] or it can be an existing measure in the model [measures].[column name].
- For details on how to employ and use this function see the granular calculation overview.
NOTE: The quartile functions are not supported by all data sources.
Different Function types
- This function is like the SQL percentile function; it calculates the 75th percentile of a column of data in your query or model.
- If you wish to find the percentile for the elements in a specified SET or LIST from a hierarchy, use this semantic function.
- To use a simple percentile mathematical operation on a list of numbers, use the Common library function.
Examples
To create a new measure that is the third quartile of expenses in the model, using the sample demo model:
ThirdQuartile( [data].[Expenses] )
or:
ThirdQuartile( [measures].[data Expenses] )
The mechanics of this function are shown below. According to this grid, the 75th percentile of all expense transactions across all 'Accessory' transactions is 46.46.