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 tables for which i want to make relation based on their similar ID column.for example please have a look at folloing picture:
how is it possible to create relation in both direction with DAX? Am I to summarize left table with some expersion and then relate it with ID column?or something like this?
thanks for your attention.
Hi, You can use TREATAS.
AmountOFTable2RR = CALCULATE ( SUM ( Table2[Amount] ), TREATAS ( VALUES ( Table1[ID] ), Table2[ID] ) )
Regards
Victor
thank u very much.seems be amazing.
what if we first : "summarize left table by accont equal to 112" and then relate their relevant ID to right table?
@Vvelardethank u .you know what the problem is?i want to calculate a ratio in which account number 112 in left table shoud be divided to account 8520 ( in right table ) which is not uniqe.can i do that with your solution?
Will this work for you?
NEWTable = DISTINCT( UNION ( DISTINCT ( Table1[id] ), DISTINCT ( Table2[id] ) ) )
Proud to be a Super User!
thank u .but i won't to establish such relation with Bridge.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
27 |
User | Count |
---|---|
92 | |
50 | |
44 | |
40 | |
35 |