Forum Discussion
Custom Pass/Fail Thresholds in Power BI Table Visuals
- Anonymous2 years ago
Hi parry2k ,thanks for the quick reply, I'll add further.
Hi hoosha_11 ,
I noticed that your connection mode is Live connection, maybe you can use the conditional format.
The Table data is shown below:
Please follow these steps:
1. Use the following DAX expression to create a measure(The user can just change the score in the expression)Measure = IF(SELECTEDVALUE('Table'[Score]) >= 80 ,"Pass","Fail")2.Use the following DAX expression to create a measure
Measure 2 = IF([Measure] = "Fail","RED","GREEN")3.Setting the Conditional Format
4.Final output
Apply conditional table formatting in Power BI - Power BI | Microsoft Learn
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hoosha_11 use what-if parameters to achieve this? let user pick the value in the what-if parameters and based on the selection set the green/red colors. Use parameters to visualize variables - Power BI | Microsoft Learn
Thanks a lot! I just checked and since there is a live connection to the semantic model for each report, the what-if parameter is grayed out. Are there any workarounds to use this option?