Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
101 | |
69 | |
44 | |
38 | |
30 |
User | Count |
---|---|
157 | |
89 | |
62 | |
46 | |
40 |