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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors