Applies to: Kyvos Enterprise Kyvos Cloud (SaaS on AWS) Kyvos AWS Marketplace
Kyvos Azure Marketplace Kyvos GCP Marketplace Kyvos Single Node Installation (Kyvos SNI)
...
Kyvos supports a Dynamic Measure title that can be applied to a worksheet or Dashboard. When the value of a dimension filter is changed, the measure title will automatically update to reflect the selected value of the dimension filter. See the Filtering data in worksheets section for more details.
...
Measure value: Displays the M easure value when the filter value is changed.
Measure title: Displays the Measure title along with the Measure value. You can also reuse the Measure title for other Measure values.
Sample Expression
For example, you have a semantic model with a dimension called 'Calculation Type,' and this dimension has members such as MTD, YOY, YTD, and so on. Multiple calculated measures are created in the semantic model, and their values depend on the Calculation Type filter selected in the view. When you modify the filter value, the title of the measure will change accordingly.
Consider an example where a Calculated Measure displays a dynamic title, i.e., 'Dynamic Caption'.
Following is the sample expression for a dynamic Measure value
Code Block iif([CalculationType].[CalculationType].currentmember is [CalculationType].[CalculationType].&[YOY], "YOY ", iif([CalculationType].[CalculationType].currentmember is [CalculationType].[CalculationType].&[YTD], "YTD ", iif([CalculationType].[CalculationType].currentmember is [CalculationType].[CalculationType].&[MTD], "MTD " ,null)))
Following is the sample expression for a dynamic Measure title
Code Block iif([CalculationType].[CalculationType].currentmember is [CalculationType].[CalculationType].&[YOY], [Measures].[YOY Sales], iif([CalculationType].[CalculationType].currentmember is [CalculationType].[CalculationType].&[YTD], [Measures].[YTD Sales], iif([CalculationType].[CalculationType].currentmember is [CalculationType].[CalculationType].&[MTD], [Measures].[MTD Sales],null))), DYNAMIC_CAPTION = [Measures].[Dynamic Caption] + "On Sales"
...
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
Note
|
...