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.
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! | |
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 |
---|---|
72 | |
71 | |
55 | |
37 | |
31 |
User | Count |
---|---|
87 | |
62 | |
61 | |
49 | |
45 |