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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
yellow43
Helper I
Helper I

New measure with DISTINCTCOUNT with FILTER

Hello community!

 

I am having the following issue:

 

I would like to have a Card with the number of product (SKU) that have less than 100 units sold.

As you can see on table below, I have 25 SKU, but the card shows 28 SKU.

I have created a new measure with the following:

 

Products < 100 = CALCULATE (

    DISTINCTCOUNT ( Table[SKU] ), 

    FILTER(ALL(Table[SKU]), [Total Sales] < 100

))

 

Also tried:

 

Products <100 = COUNTROWS(
FILTER(VALUES(Table[SKU]); [Total Sales]<100))

 

But it seems that is not working as I expected, because it shows 28.

This numbers of sales are calculated based on measure that I have created:

 

Total Sales = SUM(Table[Sales_Invoice])

 

yellow43_0-1659392094926.png

 

Thank you in advance for your help.

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I assume the measure needs to provide count of products that show less than 100 per selected day.

If you have a Calendar Dimension Table, please try the below measure whether it works.

 

 

Products < 100 =
CALCULATE (
    DISTINCTCOUNT ( Table[SKU] ),
    FILTER ( SUMMARIZE ( Table, Table[SKU], Calendar[Date] ), [Total Sales] < 100 )
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi, @yellow43 ;

You could try it.

Products < 100 =
CALCULATE (
    DISTINCTCOUNT ( Table[Products] ),
    FILTER ( ALLSELECTED ( 'Table' ), [Total Sales] < 100 )
)


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Jihwan_Kim
Super User
Super User

Hi,

I assume the measure needs to provide count of products that show less than 100 per selected day.

If you have a Calendar Dimension Table, please try the below measure whether it works.

 

 

Products < 100 =
CALCULATE (
    DISTINCTCOUNT ( Table[SKU] ),
    FILTER ( SUMMARIZE ( Table, Table[SKU], Calendar[Date] ), [Total Sales] < 100 )
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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