Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
I have a table which shows product availability and their forecasts.
I'd like to show ratio of "out of stock forecast amount" versus "total forecast amount".
When user select a row in this matrix, In a second matrix I want to show only the lower values then the selection in first matrix.
I created the first matrix but for second one I tried to use "Selectedvalue" function but it only works with columns not measures, so I stucked.
here is a sample file.
regards
Solved! Go to Solution.
@jamuka , we can not pass measure values across
But selection can reduce the value
You can use like
measure =
var _max = calculate([M1], allselected() )
return
if([M1] <_max, [M2], blank())
@jamuka , we can not pass measure values across
But selection can reduce the value
You can use like
measure =
var _max = calculate([M1], allselected() )
return
if([M1] <_max, [M2], blank())
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 65 | |
| 45 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 115 | |
| 114 | |
| 38 | |
| 36 | |
| 26 |