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.
Hello, I have two different tables (Table A, and Table B) with these fields
Table A
Date | User Id |
Table B
Date |
I would like to create a third table (Table C) on Power Query with these fields
Date | Count id | Count email |
I'm not really good with power Query so I can't get it how to do it.
I am using Table.SelectColumns() but in this way I can only select one table and some columns from that table. I should need a sort of a join between the two tables and then a distinct count.
Can anyone help me?
Thank you very much
Try this steps:
Import Table A (mySample)
Import Table B (mySample)
New Source > Blank Query
Create a new table with combination of Dates from Table A and Table B
= Table.Combine({Table.SelectColumns(#"Table A",{"Date"}),Table.SelectColumns(#"Table B",{"Date"})})
= Table.Distinct(Source)
We want only unique values, so use Distinct.
Merge Table A and Table B on Date column.
Expand Table A ussing Aggregate "Count (Not Blank) of User ID"
Expand Table B using Aggregate "Count of Email"
FINAL RESULT:
PBIX FILE: https://we.tl/t-ysyNlMBzuu
Proud to be a Super User!
User | Count |
---|---|
73 | |
70 | |
38 | |
24 | |
23 |
User | Count |
---|---|
96 | |
93 | |
50 | |
41 | |
40 |