Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
hi all
Below is my raw data. How can i create a matrix in power bi to show a table with process have at least 1 value ( Start, Mid, End) is negative ?
thanks
Solved! Go to Solution.
Hi @ktt777
Try to build a measure and add this measure into filter field in this matrix visual.
Measure:
Filter Measure =
VAR _Start = IF(SUM('Sample'[Start])>=0,0,1)
VAR _Mid = IF(SUM('Sample'[Mid])>=0,0,1)
VAR _End = IF(SUM('Sample'[End])>=0,0,1)
RETURN
_Start+_Mid+_End
Add this measure into filter field in this matrix visual and set this measure to show items when value is greater that 0.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @amitchandak
Here is the expected result. It show process A, C because there is at least 1 value is less than 0 in the row
thanks
Hi @ktt777
Try to build a measure and add this measure into filter field in this matrix visual.
Measure:
Filter Measure =
VAR _Start = IF(SUM('Sample'[Start])>=0,0,1)
VAR _Mid = IF(SUM('Sample'[Mid])>=0,0,1)
VAR _End = IF(SUM('Sample'[End])>=0,0,1)
RETURN
_Start+_Mid+_End
Add this measure into filter field in this matrix visual and set this measure to show items when value is greater that 0.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 37 | |
| 34 | |
| 31 | |
| 27 |
| User | Count |
|---|---|
| 136 | |
| 99 | |
| 73 | |
| 66 | |
| 65 |