Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a requirement as below
There are Three buttons.
1) Risk
2) Non Risk
3) Full View
Each button has set of Layout container in side KPI's
When I click on Risk , Only this one
When I click on Non Risk, Only this one
When I click on Full View, Only this one
Like this below buttons.
How Do i achieve this?
Create three variables: vRisk, vNonRisk, and vFullView, and initialize their values to 0.
Set up three buttons, each configured with an action to update the corresponding variable's value to 1 when clicked, while ensuring the other two variables are reset to 0.
For the layout charts, use conditional show logic based on these variable values (vRisk=1, vNonRisk=1, or vFullView=1) to display the relevant KPIs dynamically. Add corresponding variables for each KPI to handle their visibility logic.
Place all KPIs within a single layout container, and use buttons to update variable values. Utilize these variables in the Show condition to dynamically control the visibility of KPIs, displaying or hiding them based on the variable values.