Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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)
)
Thank you!
not exactly sure what you are asking but maybe try:
_Count =
CALCULATE(
DISTINCTCOUNT('Table'[CID])
,FILTER(all('Table'[Alerted before]), 'Table'[Alerted before] > 1)
)
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
8 | |
6 |