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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
nadav50
Regular Visitor

creating table from multiple other columns

hi ,

i added a pic that im trying to do in power bi but not succeed,

 

hope you understand 🙂

new table.JPG

1 ACCEPTED SOLUTION
KHorseman
Community Champion
Community Champion

Hit the New Table button and add this DAX formula:

 

new table = ADDCOLUMNS(
	NATURALINNERJOIN(
		'Table 1',
		SUMMARIZE(
			'Table 2',
			'Table 2'[closing balance]
		)
	),
	"sum balance",
	'Table 1'[opening balance] + 'Table 2'[closing balance]
)

 

Note that you need to have a relationship between the two source tables. Also if your real data is not quite like this sample data, you may have to use NATURALLEFTOUTERJOIN instead. Depends on whether or not one of the two tables has blanks or duplicates.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

5 REPLIES 5
KHorseman
Community Champion
Community Champion

Hit the New Table button and add this DAX formula:

 

new table = ADDCOLUMNS(
	NATURALINNERJOIN(
		'Table 1',
		SUMMARIZE(
			'Table 2',
			'Table 2'[closing balance]
		)
	),
	"sum balance",
	'Table 1'[opening balance] + 'Table 2'[closing balance]
)

 

Note that you need to have a relationship between the two source tables. Also if your real data is not quite like this sample data, you may have to use NATURALLEFTOUTERJOIN instead. Depends on whether or not one of the two tables has blanks or duplicates.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




So where is the "New Table" button?

@efglynnUnder the Modeling tab in the ribbon.

 

NewTable.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Sean
Community Champion
Community Champion

@nadav50@efglynn

 

Frankly I'm surprised @KHorseman offered a DAX solution Smiley Very Happy maybe because this was last year

 

I think the Query Editor is made for this!

 

Look at these 2 links describing all the joins and select which one you need in your case

http://www.excelguru.ca/blog/2015/12/16/merge-tables-using-outer-joins-in-power-query/

http://www.excelguru.ca/blog/2015/12/23/merge-tables-using-inner-and-anti-joins-in-power-query/

 

Once you know which join type you need its really easy to do in the Query Editor Smiley Happy

 

Query Editor - Merge As New.gif

Amazing!! THX

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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