Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi,
I have the following data:
| Season | Round |
| 2021 | 1 |
| 2022 | 1 |
| 2021 | 2 |
| 2022 | 2 |
| 2021 | 3 |
The combination of Season and Round is in my case unique. I want to count the unique values of those two columns. The total here should be 5.
Solved! Go to Solution.
Try
Measure = COUNTROWS(DISTINCT('Table'[Round]))+COUNTROWS(DISTINCT('Table'[Season]))
Try
Measure = COUNTROWS(DISTINCT('Table'[Round]))+COUNTROWS(DISTINCT('Table'[Season]))
pls try this
m1 = COUNTROWS(DISTINCT(UNION (VALUES('table'[Product],VALUES('table'[Category])))
That does not work unfortunately, for every value it returns 2 instead of 1...
Share sample pbix file to help you.
I can't... but I changed my post. If I use your measure I get not enough value back.