Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
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:
Solved! Go to Solution.
@rweb95 , Try measure as
calculate(DISTINCTCOUNT('RateSchedule - Current'[RateScheduleName]), filter('RateSchedule - Current', 'RateSchedule - Current'[IsActive] && 'RateSchedule - Current'[IsDefault]
&& isblank('RateSchedule - Current'[CompanyId])))
Hi,
Does this work?
=calculate(DISTINCTCOUNT('RateSchedule - Current'[RateScheduleName]), RateSchedule - Current'[IsActive]=TRUE(),'RateSchedule - Current'[IsDefault]=TRUE(),'RateSchedule - Current'[CompanyId]=BLANK())
@rweb95 , Try measure as
calculate(DISTINCTCOUNT('RateSchedule - Current'[RateScheduleName]), filter('RateSchedule - Current', 'RateSchedule - Current'[IsActive] && 'RateSchedule - Current'[IsDefault]
&& isblank('RateSchedule - Current'[CompanyId])))
Wonderful! It did work. Thank you for your help!
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 39 | |
| 31 | |
| 18 | |
| 17 | |
| 15 |