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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
suparnababu8
Frequent Visitor

Appending 2 Tables By using DAX

Hi All..!!

 

I have two tables like 

 

Table A like below

suparnababu8_0-1686330124187.png

and 

Table B like below

 

suparnababu8_1-1686330163472.png

 

and

 

i will get Result Table as follows

 

suparnababu8_2-1686330199750.png

 

 

Any one pls help inthis regard.

 

Thanks in Advance...
@Incom @com 

1 ACCEPTED SOLUTION
NaveenGandhi
Super User
Super User

Hello @suparnababu8 

use the below Dax to create the table.


ResultTable =
SUMMARIZE (
UNION (
SELECTCOLUMNS ( 't1', "Month", 't1'[Month] ),
SELECTCOLUMNS ( 't2', "Month", 't2'[Month] )
),
[Month],
"Amt",
LOOKUPVALUE ( T2[Sales], T2[Month], [Month] )
+ LOOKUPVALUE ( T1[Sales], T1[Month], [Month] )
)

NaveenGandhi_0-1686333182777.png

 

Let me know if this helps!

If this post helps, then please consider Accept it as the solution to help the others find it more quickly. Appreciate you kudos!!







View solution in original post

2 REPLIES 2
Syk
Super User
Super User

You can do this in power query quite easily. 

Syk_1-1686333221138.png

 

NaveenGandhi
Super User
Super User

Hello @suparnababu8 

use the below Dax to create the table.


ResultTable =
SUMMARIZE (
UNION (
SELECTCOLUMNS ( 't1', "Month", 't1'[Month] ),
SELECTCOLUMNS ( 't2', "Month", 't2'[Month] )
),
[Month],
"Amt",
LOOKUPVALUE ( T2[Sales], T2[Month], [Month] )
+ LOOKUPVALUE ( T1[Sales], T1[Month], [Month] )
)

NaveenGandhi_0-1686333182777.png

 

Let me know if this helps!

If this post helps, then please consider Accept it as the solution to help the others find it more quickly. Appreciate you kudos!!







Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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