Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Dear all,
I have two tables Overdue,Bounce.
Overdue:
Customer name,
Customer no,
DOB,
Accountno,
Monthyr,
Key
Bounce:
Accountno,
Monthyr,
Key,
EMI amount,
Par
Now i want to create a new table which should only has Accountno,Monthyr,Key from both these table
Newtable:
Accountno,
Monthyr,
Key
Regards,
Joshua.
Solved! Go to Solution.
Hi @Anonymous,
You can new a calculated table with below formula:
NewTable = UNION ( SELECTCOLUMNS ( Overdue, "Accountno", Overdue[Accountno], "Monthyr", Overdue[Monthyr], "Key", Overdue[Key] ), SELECTCOLUMNS ( Bounce, "Accountno", Bounce[Accountno], "Monthyr", Bounce[Monthyr], "Key", Bounce[Key] ) )
Best regards,
Yuliana Gu
Hi @Anonymous,
You can new a calculated table with below formula:
NewTable = UNION ( SELECTCOLUMNS ( Overdue, "Accountno", Overdue[Accountno], "Monthyr", Overdue[Monthyr], "Key", Overdue[Key] ), SELECTCOLUMNS ( Bounce, "Accountno", Bounce[Accountno], "Monthyr", Bounce[Monthyr], "Key", Bounce[Key] ) )
Best regards,
Yuliana Gu
User | Count |
---|---|
98 | |
76 | |
75 | |
49 | |
27 |