This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hey All,
I deadly need your helps guys.
Let's say I have the following table:
I want firstly to distinct count the values in Col1 based on Col2 to get:
A1>>>2
B1>>>1
C1>>>1
afterthat I want to count the resultant values based on Col3:
DD>>>2
BB>>>2
if I will use directly distinct count based on Col3 the result for "BB" will be 1 which is not what I want to get at the end.
Thank you all in advance.
Regards,
Solved! Go to Solution.
Hi @AZL
How about a DISTINCTCOUNT on the concatenation of the columns you are interested in? For instance, in your first example with Col1 and Col2, you create an additional calculated column
Table1[NewColum]=Table1[Col] & Table1[Col2]
and then
DISTINCTCOUNT(Table1[NewColum])
Hi @AZL
Assume you have the result as below
Per your requirement, you could create a measure
Measure = CALCULATE(DISTINCTCOUNT(Sheet3[col1]),ALLEXCEPT(Sheet3,Sheet3[col2]))
Best Regards
Maggie
Hi @AZL
How about a DISTINCTCOUNT on the concatenation of the columns you are interested in? For instance, in your first example with Col1 and Col2, you create an additional calculated column
Table1[NewColum]=Table1[Col] & Table1[Col2]
and then
DISTINCTCOUNT(Table1[NewColum])
you're very welcome. glad it helped.
Please mark it as solution then, so that it's available for others too.
Cheers
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 37 | |
| 37 | |
| 31 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 76 | |
| 59 | |
| 32 | |
| 31 | |
| 26 |