Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jhd
Helper I
Helper I

Using SUM as a FILTER Condition

=CALCULATE(

DISTINCTCOUNT(MASTER_DATA[DATE]),

ALL(MASTER_DATA[DATE]),

MASTER_DATA[UNITS]>0))

 

My table of data (called MASTER_DATA)

DATEUNITS
01/04/2017-100
01/04/2017100
05/04/2017200
06/04/2017150
07/04/20170

 

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.

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@jhd

 

Try this revision

 

Measure =
CALCULATE (
    DISTINCTCOUNT ( MASTER_DATA[DATE] ),
    FILTER (
        ALL ( MASTER_DATA[DATE] ),
        CALCULATE ( SUM ( MASTER_DATA[UNITS] ) ) > 0
    )
)

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@jhd

 

Try this revision

 

Measure =
CALCULATE (
    DISTINCTCOUNT ( MASTER_DATA[DATE] ),
    FILTER (
        ALL ( MASTER_DATA[DATE] ),
        CALCULATE ( SUM ( MASTER_DATA[UNITS] ) ) > 0
    )
)

Regards
Zubair

Please try my custom visuals

Thanks @Zubair_Muhammad, that worked perfectly!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.