Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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?