Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
I have a table that has overlapping data. How can I create one merged column whereby if there are blanks in one it takes the value from the other and if there are blanks in the other it returns the value from the other. Where the data overlaps it just returns the value.
When the data overlaps the values are the same. I am trying to do this through Query Editor.
Any help would be much appreciated.
Many thanks in advance.
Kind regards,
Alex
Solved! Go to Solution.
Hi,
just add a (conditional) column and create an if-statement kinda like: if [col1] = "" then [col2] else [col1]
Regards,
Julian
Hi,
Try this
=if [col1] = null then [col2] else [col1]
Hi,
Try this
=if [col1] = null then [col2] else [col1]
Hi,
just add a (conditional) column and create an if-statement kinda like: if [col1] = "" then [col2] else [col1]
Regards,
Julian
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
79 | |
58 | |
35 | |
35 |
User | Count |
---|---|
99 | |
59 | |
56 | |
46 | |
40 |