This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi -
I have a time based measure that calculates a "Risk" metric based on several other attributes which change over time.
I'd like to add a slicer which allows multi-select like the one below where I can filter down on the Risk metrics.
However, I'm having trouble figuring out how to move forward. It seems like after searching the forum, there may be some combination of using VALUES and IN but I can't quite figure it out. I also saw someone use ISCROSSFILTERED and then filter when it's true but still running into issues with it. Thanks!
Solved! Go to Solution.
HI @facilitydax ,
Did your slicer use the same source field as your snapshot? If this is a case, you can direct use values(Table[Risk]) as a filter condition to filter calculation records.
Measure =
CALCULATE ( formula, VALUES ( Table[Risk] ) )
If your slicer uses an unrelated table column as the source, you can loop the whole table to compare it with selected items.
Measure =
CALCULATE (
formula,
FILTER ( ALLSELECTED ( Table ), Table[Risk] IN VALUES ( selector[Risk] ) )
)
Regards,
Xiaoxin Sheng
HI @facilitydax ,
Did your slicer use the same source field as your snapshot? If this is a case, you can direct use values(Table[Risk]) as a filter condition to filter calculation records.
Measure =
CALCULATE ( formula, VALUES ( Table[Risk] ) )
If your slicer uses an unrelated table column as the source, you can loop the whole table to compare it with selected items.
Measure =
CALCULATE (
formula,
FILTER ( ALLSELECTED ( Table ), Table[Risk] IN VALUES ( selector[Risk] ) )
)
Regards,
Xiaoxin Sheng
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 49 | |
| 47 | |
| 41 | |
| 21 | |
| 19 |