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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.