Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi everybody,
I am just getting started with PowerBI, and stuck already :). Here is my question:
I have 2 tables.
Table A holds unique IDs:
1
2
3
4
Table B holds the same IDs and Country Names:
1 Belgium
2 Belgium
2 France
2 China
3 France
4 France
4 Belgium
What I would like to do is add a column to Table A providing a sum of the number of distinct countries in which the ID is available. In other words, Table A should become:
1 1
2 3
3 2
4 1
Any ideas on how I can best achieve this?
Thanks so much!
Mark
Solved! Go to Solution.
Hi
Create a relationship between table a and table b on ID's then create a DAX measure
CountryCount = (COUNTROWS(Table2))
Kind Regards
David
Hi
Create a relationship between table a and table b on ID's then create a DAX measure
CountryCount = (COUNTROWS(Table2))
Kind Regards
David
User | Count |
---|---|
123 | |
76 | |
62 | |
50 | |
49 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |