RemoveBlanks
Returns a collection of numbers where blank values have been removed from the provided list.
- Returned Output: Numeric
- Library: PQL \ Common \ Math
- Version: 2018.00.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
RemoveBlanks( <Numeric List> )
* Click on the function's arguments above for more details on the input values.
Comments
- The collection of values can be any list or array of numbers: integer, float etc.
Examples
This example returns all the values in the first column of a dataset (position 0) using the DataSetColumn dynamic function, that are not blank or empty.
RemoveBlanks(dataSetColumn(0))