Forum Discussion
Column Distinct Count with Several Conditions
Hello everyone!
I need help getting a distinct count of names within a column with several conditions applied.
Here is a sample of the data I'm working with:
| UtilityName | RateScheduleName | IsDefault | IsActive | CompanyId |
F Electric | Husker | False | 11 | |
| F Electric | General Service | True | True | |
| F Electric | General Service | True | True | |
| F Electric | Glacial Energy | False | True | 12 |
| F Electric | Irrigation | True | True | |
| F Electric | Irrigation | True | True | |
| F Electric | Large Commercial | True | True | |
| F Electric | Large Commercial | True | True | |
| F Electric | Large Commercial Load Control | True | True | |
| F Electric | Large Commercial Load Control | True | True | |
| F Electric | Residential & Small Business | True | True | |
| F Electric | Residential & Small Business | True | True |
I want to count the number of distinct names in the 'RateSchedule - Current'[RateScheduleName]
Here is the formula I tried to use:
rweb95 , Try measure as
calculate(DISTINCTCOUNT('RateSchedule - Current'[RateScheduleName]), filter('RateSchedule - Current', 'RateSchedule - Current'[IsActive] && 'RateSchedule - Current'[IsDefault]
&& isblank('RateSchedule - Current'[CompanyId])))
3 Replies
- amitchandakSuper User
rweb95 , Try measure as
calculate(DISTINCTCOUNT('RateSchedule - Current'[RateScheduleName]), filter('RateSchedule - Current', 'RateSchedule - Current'[IsActive] && 'RateSchedule - Current'[IsDefault]
&& isblank('RateSchedule - Current'[CompanyId])))- rweb95Frequent Visitor
Wonderful! It did work. Thank you for your help!
- Ashish_MathurSuper User
Hi,
Does this work?
=calculate(DISTINCTCOUNT('RateSchedule - Current'[RateScheduleName]), RateSchedule - Current'[IsActive]=TRUE(),'RateSchedule - Current'[IsDefault]=TRUE(),'RateSchedule - Current'[CompanyId]=BLANK())