Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
 
					
				
		
Hi,
I have 2 tables:
US table:
| Product | Revenue | 
| 1 | 1000 | 
| 2 | 2000 | 
| 3 | 1000 | 
Canada Table:
| Product | Revenue | Country | 
| 1 | 1000 | Canada | 
| 2 | 2000 | Canada | 
| 3 | 1000 | Canada | 
I have to merge these 2 tables and I want to add Country column in US table. I tried using add column, but couldn't work. How can I add another column and its values in the US table?
Expected outcome:
| Product | Revenue | Country | 
| 1 | 1000 | Canada | 
| 2 | 2000 | Canada | 
| 3 | 1000 | Canada | 
| 1 | 1000 | USA | 
| 2 | 2000 | USA | 
| 3 | 1000 | USA | 
Thanks for the help!
Solved! Go to Solution.
Hi
You can do this in Power Query Editor.
Add custom column with formula ="USA"
@Anonymous
Just to illustrate how to do this in Power Query:
1) go to Power Query ("Transform Data" in the ribbon
2) select your US Table and choose "Add Custom" from the Add column in the ribbon:
3) Name the new Column "Country" and add the code as shown:
4) Select "Append Queries" from the ribon and choose "Append as new":
5) in the dialogue, select the "Canada" table to append to the US table:
6) and your done - "Close and apply":
Proud to be a Super User!
Paul on Linkedin.
Thanks, everyone for your input. I tried adding a custom column but I was just using single quotes, I should have used double-quotes.
 
					
				
		
You should be able to add a custom column in the Query Editor with the code:
= "USA" 
					
				
		
Add a calculated column to US Table.
Country = "US"Hi
You can do this in Power Query Editor.
Add custom column with formula ="USA"
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 90 | |
| 49 | |
| 37 | |
| 31 | |
| 30 |