The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I'm trying to create a measure that calculates the distinct count of active users across two columns, as in the example below:
In both columns there are 4 active users, but my result would not be the sum of the two distinct counts (8): the result would be 6 (as there are only 6 email addresses in total - sometimes they're senders and sometimes they're receivers).
My process would be to append the two columns and then calculate a distinct count of the resulting column, but I have to use a measure as I'm connected in DirectQuery mode.
Any suggestions on how I can accomplish this?
Thanks!
Alienvolm
Solved! Go to Solution.
@Alienvolm Essentially MC Aggregations: Multi-Column Aggregations (MC Aggregations) - Microsoft Power BI Community
In your case:
Measure =
COUNTROWS(
DISTINCT(
UNION(
SELECTCOLUMNS('Table',"Email",[Sender]),
SELECTCOLUMNS('Table',"Email",[Receiver])
)
)
)
@Alienvolm Essentially MC Aggregations: Multi-Column Aggregations (MC Aggregations) - Microsoft Power BI Community
In your case:
Measure =
COUNTROWS(
DISTINCT(
UNION(
SELECTCOLUMNS('Table',"Email",[Sender]),
SELECTCOLUMNS('Table',"Email",[Receiver])
)
)
)
Thanks a lot! That worked!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
79 | |
72 | |
48 | |
41 |
User | Count |
---|---|
138 | |
108 | |
69 | |
64 | |
57 |