Forum Discussion
Final Calculated Column is displaying incorrect results. (Example .pbix file included)
- 3 years ago
StuartSmith , A calculated column can not use slicer values a measure can, you have to create a measure
Absence KPI = IF(SELECTEDVALUE('Table: All Absence Details'[Fully Backfilled]) = "Yes", "KPI Met", "KPI Breached")
In case you need a slicer on that, you need segmentation
very similar to this one
Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://youtu.be/EyL7KMw877Q
StuartSmith , A calculated column can not use slicer values a measure can, you have to create a measure
Absence KPI = IF(SELECTEDVALUE('Table: All Absence Details'[Fully Backfilled]) = "Yes", "KPI Met", "KPI Breached")
In case you need a slicer on that, you need segmentation
very similar to this one
Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://youtu.be/EyL7KMw877Q
- StuartSmith3 years agoPower Participant
Thanks Amit, I had already tried the measure approach you suggested, and that gives the desired results, but then the silcer filter doesn't filter the table visual. I will take a look at your link.