Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I have a column A and column B. I want to add new column C like-
if coulmn B contains specific text1 and column A contains another specific text2 then put text X in column C else if coulmn B contains specific text3 and column A contains another specific text4 then put text Y in column C else if coulmn B contains specific text5 and column A contains another specific text6 then put text Z in column C and so on.
Can some one please help me with the formula?
Solved! Go to Solution.
hi @Ramendra
In edit queries, you could use the logic of this formula:
if( Text.Contains([Column A],"text1") and Text.Contains([#"Column B#(lf)"],"text2"))
then "X"
else if( Text.Contains([#"Column B#(lf)"],"text3") and Text.Contains([Column A],"text4"))
then "Y"
else if( Text.Contains([#"Column B#(lf)"],"text5") and Text.Contains([Column A],"text6"))
then "Z"
else null
and here is sample pbix file, please try it.
Regards,
Lin
hi @Ramendra
In edit queries, you could use the logic of this formula:
if( Text.Contains([Column A],"text1") and Text.Contains([#"Column B#(lf)"],"text2"))
then "X"
else if( Text.Contains([#"Column B#(lf)"],"text3") and Text.Contains([Column A],"text4"))
then "Y"
else if( Text.Contains([#"Column B#(lf)"],"text5") and Text.Contains([Column A],"text6"))
then "Z"
else null
and here is sample pbix file, please try it.
Regards,
Lin
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
87 | |
81 | |
53 | |
38 | |
35 |