Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Win a FREE 3 Day Ticket to FabCon Vienna. Apply now

Reply
Anonymous
Not applicable

concatenating two tables

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.

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

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

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yulgu-msft
Microsoft Employee
Microsoft Employee

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

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.