Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have two columns in excel as shown below:
I want to merge this two columns into a new column using Power Query so that result in the new column called "Final" is like below:
How can i acheive this using power query?
Solved! Go to Solution.
= Table.AddColumn(PriorStepOrTableName, "Final", each [Req number]?? [Req1 number])
--Nate
= Table.AddColumn(PriorStepOrTableName, "Final", each [Req number]?? [Req1 number])
--Nate
Thanks for the response. It works fine. What does the ?? operator do?