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
=CALCULATE(
DISTINCTCOUNT(MASTER_DATA[DATE]),
ALL(MASTER_DATA[DATE]),
MASTER_DATA[UNITS]>0))
My table of data (called MASTER_DATA)
| DATE | UNITS |
| 01/04/2017 | -100 |
| 01/04/2017 | 100 |
| 05/04/2017 | 200 |
| 06/04/2017 | 150 |
| 07/04/2017 | 0 |
Result = 3
However, the result I want is 2, because I only want to count unique dates where the SUM of UNITS is greater than zero.
How can I filter by the SUM of UNITS? It doesn't seem to be possible to put SUM as a filter condition.
Thanks.
Solved! Go to Solution.
Try this revision
Measure =
CALCULATE (
DISTINCTCOUNT ( MASTER_DATA[DATE] ),
FILTER (
ALL ( MASTER_DATA[DATE] ),
CALCULATE ( SUM ( MASTER_DATA[UNITS] ) ) > 0
)
)
Try this revision
Measure =
CALCULATE (
DISTINCTCOUNT ( MASTER_DATA[DATE] ),
FILTER (
ALL ( MASTER_DATA[DATE] ),
CALCULATE ( SUM ( MASTER_DATA[UNITS] ) ) > 0
)
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 134 | |
| 96 | |
| 78 | |
| 67 | |
| 65 |