LASTNONBLANKX
The LASTNONBLANKX function in Infoveave identifies the last non-blank (non-empty) value in a dataset or column that meets a specific condition, filtered by the current context.
Applicable to
- Calculated Columns
- Expressions
Return Value
The first non-blank value in the dataset or column that meets the specified condition.
Remark
LASTNONBLANKX extracts the initial non-empty data point within datasets, considering a condition. It’s valuable for responsive monitoring and alerting applications, providing selective and context-aware results.
Syntax
LASTNONBLANKX(<expression>,<condition>)
LASTNONBLANKX in Board Expression
Parameter | Description |
---|---|
Expression | A placeholder replaced with actual widget and measure names. |
Condition | A placeholder replaced with the condition filter. |
Widget Name | The specific name or identifier of the widget used for data visualization in the Infoboard. |
Measure | The name of the measure displayed or analyzed using the widget. |
Dimension | The dimension column displayed or analyzed using the widget. |
Dimension Value | The specific dimension items within the dimension column used for visualization in the widget. |
Steps to Use LASTNONBLANKX
- Write the LASTNONBLANKX function. For instance
LASTNONBLANKX(<expression>,<condition>)
- Where
expression
equals'Widget Name'[Measure]
andcondition
equals[Dimension Name]="Dimension Value"
.Replace Widget Name with your widget’s name, Measure with the required measure name, Dimension with the required dimension name, and Dimension Value with the dimension value of the selected dimension name. - To learn how to configure an Expression in Infoveave, visit the Configure Expression section.
LASTNONBLANKX in Calculated Columns
Parameter | Description |
---|---|
Expression | A placeholder replaced with column names. |
Condition | A placeholder replaced with the condition filter. |
Column Name | The name of the column in the dataset or Datasource containing the values you want to analyze. |
Filter Condition | A filter condition returning data points meeting the defined condition you want to analyze. Can be string or numeric. |
Steps to Use LASTNONBLANKX in Calculated Columns
- Write the LASTNONBLANKX function. For instance
LASTNONBLANKX(<expression>,<condition>)
- Replace
<expression>
with the required[Column Name]
and<condition>
equals[Column Name]="Filter Condition"
- Replace Column Name with your column’s name and Filter Condition with the required condition.
- To learn how to add calculated columns in Infoveave, visit the Calculated Columns section.