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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Distinct count with filter greater than filter

Hey,

 

Im trying to get distict Column ID with a filter greater than 1. When I use greater than, the filter does not seem to work. 

When I do = 1, then it filters properly showing only the rows with 1.

_Count =
CALCULATE(
DISTINCTCOUNT('Table'[CID])
,FILTER('Table', 'Table'[Alerted before] > 1)
)

 Sample.PNG

 

Thank you!

1 REPLY 1
rfigtree
Resolver III
Resolver III

not exactly sure what you are asking but maybe try:

_Count =
CALCULATE(
DISTINCTCOUNT('Table'[CID])
,FILTER(all('Table'[Alerted before]), 'Table'[Alerted before] > 1)
)

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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