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.
hi Team,
I am using a function countrows to get the count details of the regions, however i don't want the duplicate to be counted 2 or 3 times based on their repetition
for instance if Canada is repeating 3 times, it should only count as 1
how do i remove the duplicate?
can someone help me with the measure?
Solved! Go to Solution.
@vjnvinod ,
Countrows function returns count of rows per criteria.
If there are 3 rows for Canada, it will return value 3.
On the other hand, if you would like to count have many distinct items(for example) were sold in Canada, they you should write measure like this:
Hi, @vjnvinod
Based on your description, I created data to reproduc your scenario. The pbix file is attached in the end.
MSL:
You may create a measure as below.
Count =
COUNTROWS(
DISTINCT(MSL[Region])
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@vjnvinod - Use DISTINCTCOUNT or maybe COUNTROWS(DISTINCT(...))
https://docs.microsoft.com/en-us/dax/distinctcount-function-dax
HI @vjnvinod ,
Use DISTINCTCOUNT to count unique rows for a column rather than using COUNTROWS or you can use DISTINCT with COUNTROWS.
UniqueCount = DISTINCTCOUNT(tablename[column])
OR
UniqueCount = COUNTROWS(DISTINCT(tablename[column]))
Thanks,
Pragati
@vjnvinod ,
Countrows function returns count of rows per criteria.
If there are 3 rows for Canada, it will return value 3.
On the other hand, if you would like to count have many distinct items(for example) were sold in Canada, they you should write measure like this:
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
62 | |
62 | |
52 | |
39 | |
24 |
User | Count |
---|---|
85 | |
57 | |
45 | |
43 | |
38 |