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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
DagmaraG
Frequent Visitor

distinct count of occurence by category

Hi!

I have table with

Product and Value fields

 

I need to count nr of products which have more then 9 occurences of Values.

I tried this measure, but I guess its different contex.

 CALCULATE(DISTINCTCOUNT(Table[Product]), FILTER(Table, DISTINCTCOUNT(Value) > 9))

DagmaraG_0-1678282513841.png

 

2 ACCEPTED SOLUTIONS
FreemanZ
Super User
Super User

hi @DagmaraG 

try like:

Measure =
VAR _table =
ADDCOLUMNS(
    VALUES(TableName[Product]),
    "Count",
     CALCULATE(COUNTROWS(TableName))
)
RETURN
COUNTROWS(
    FILTER(
        _table,
        [Count]>9
    )
)

View solution in original post

v-zhangti
Community Support
Community Support

Hi, @DagmaraG 

 

You can try the following methods.

vzhangti_0-1678688441539.png

Measure:

Count1 = COUNT('Table'[Product])
Count2 = CALCULATE(DISTINCTCOUNT('Table'[Product]),FILTER(ALL('Table'),[Count1]>=9))

vzhangti_1-1678688495666.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-zhangti
Community Support
Community Support

Hi, @DagmaraG 

 

You can try the following methods.

vzhangti_0-1678688441539.png

Measure:

Count1 = COUNT('Table'[Product])
Count2 = CALCULATE(DISTINCTCOUNT('Table'[Product]),FILTER(ALL('Table'),[Count1]>=9))

vzhangti_1-1678688495666.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

FreemanZ
Super User
Super User

hi @DagmaraG 

try like:

Measure =
VAR _table =
ADDCOLUMNS(
    VALUES(TableName[Product]),
    "Count",
     CALCULATE(COUNTROWS(TableName))
)
RETURN
COUNTROWS(
    FILTER(
        _table,
        [Count]>9
    )
)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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