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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.

Top Solution Authors