We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply 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 |
---|---|
60 | |
55 | |
47 | |
37 | |
33 |
User | Count |
---|---|
88 | |
84 | |
69 | |
48 | |
47 |