Forum Discussion
Use a calculated measure from a different Table/Matrix as a slicer
- 1 year ago
Hi SeungLee95
Sorry for the late response.
You cannot directly use a measure in a slicer since slicers only work with columns. To achieve filtering by LiveRate in a slicer, create a calculated column instead of using a measure. For example:
LiveRateColumn = DIVIDE([LiveCount], [UnitCount], 0)
This column can then be used in a numeric range slicer to filter rows between values like 0.33 to 1.0. You can still keep your original LiveRate measure for conditional formatting and display in the matrix. The column is only used for slicer-based filtering.
Best Regards,
Cheri Srikanth
Hi,
Please consider using numeric range parameter feature in Power BI desktop.
https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-what-if?wt.mc_id=DP-MVP-5004989
Hi Jihwan_Kim ,
Thank you for the response.
I've tried using the numeric range parameter but fail to actually apply it.
The problem I believe is I can't apply a parameter since the table values are not really measures, but columns with a count
Is there any other suggestions you would give me?