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.
Hi
i would like to merge two columns- Ingredient Category & Additive Category into one, but removing the N/A.How can i do it? Thanks
Solved! Go to Solution.
Hi @longlongisi
Create conditional column in Power Query
or
with DAX
= SWITCH(
TRUE(),
Table[Ingredient Category] = "N/A",Table[Additive Category],
Table[Additive Category] = "N/A",Table[Ingredient Category])
Let me know if that works for you
If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.
Thanks
Pijush
Linkedin
Proud to be a Super User! | |
Hi @longlongisi
You want to do in Power Query or DAX
If Power Query, 1st replace the N/A value to Blank and merge Custom Column = [Ingredient Category]&[Additive Category]
Let me know if that works for you
If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.
Thanks
Pijush
Linkedin
Proud to be a Super User! | |
@PijushRoy Thanks, but i dont want to change the N/A to Null, is there any alternative solution?
Hi @longlongisi
Create conditional column in Power Query
or
with DAX
= SWITCH(
TRUE(),
Table[Ingredient Category] = "N/A",Table[Additive Category],
Table[Additive Category] = "N/A",Table[Ingredient Category])
Let me know if that works for you
If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.
Thanks
Pijush
Linkedin
Proud to be a Super User! | |
User | Count |
---|---|
76 | |
75 | |
46 | |
31 | |
27 |
User | Count |
---|---|
99 | |
91 | |
51 | |
49 | |
45 |