Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hello Team,
I do a full outer join , results in null values in some of the columns.
I would like to have a single column with all values for all the common columns.
What is the best approach?
| A | B | C | D |
| 1 | 100 | 200 | 500 |
| 2 | 101 | 201 | 501 |
| 3 | 102 | 202 | 502 |
| 4 | 103 | 203 | 503 |
| A | B | C | E |
| 1 | 100 | 200 | 600 |
| 2 | 101 | 201 | 601 |
| 3 | 102 | 202 | 602 |
| 5 | 104 | 204 | 604 |
Solved! Go to Solution.
Hii @ArvindJha
Load the Data. Go to Transform Data.
1)
2)
Output:
Please Try this.
I hope this will help you.
Load both tables into Power BI and open the Power Query Editor.
Perform a full outer join using "Merge Queries" on your key column (Column A).
Expand the merged column to include all relevant columns (B, C, D, E).
Add a custom column using an if statement to consolidate values. For example
if [D] <> null then [D] else [E]
Remove the original D and E columns as needed.
Click “Close & Apply” to load the transformed data.
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Load both tables into Power BI and open the Power Query Editor.
Perform a full outer join using "Merge Queries" on your key column (Column A).
Expand the merged column to include all relevant columns (B, C, D, E).
Add a custom column using an if statement to consolidate values. For example
if [D] <> null then [D] else [E]
Remove the original D and E columns as needed.
Click “Close & Apply” to load the transformed data.
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Hii @ArvindJha
Load the Data. Go to Transform Data.
1)
2)
Output:
Please Try this.
I hope this will help you.
Thanks for the response , Expected Outcome
| A | B | C | D | E |
| 1 | 100 | 200 | 500 | 600 |
| 2 | 101 | 201 | 501 | 601 |
| 3 | 102 | 202 | 502 | 602 |
| 4 | 103 | 203 | 503 | |
| 5 | 104 | 204 | 604 |
Hii @ArvindJha
Load the Data. then go to Transform Data.
1)
2)
Output:
Please Try This.
I hope this Will halp You
Hello @ArvindJha
Please clarify the desired outcome you're seeking. Providing sample data or a screenshot of the expected result would be beneficial.
You mentioned attempting a full-outer join, which typically yields multiple columns, yet you require a single column containing all values. This is somewhat confusing; could you please elaborate on your issue?
Thanks,
Udit
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 52 | |
| 42 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 123 | |
| 104 | |
| 44 | |
| 32 | |
| 24 |