Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
PhilSap
Frequent Visitor

Not statement within Conditional Column

Hey!

 

I have a campaign UTM that contains the what I need the same code which is PMAX and PLA.  I am trying to seperate these and below is an Example what I am aiming for 

 

PMAX= Campaign UTM Contains PMAX but NOT PLA

PLA= Campaign UTM contains PLA but NOT PMAX

 

I am trying a custom column with the below code but doesn't seem to be working

 

if Text.Contains([Campaign],"PMAX") <> Text.Contains([Campaign] ,"PLA") then "PMAX"
else "null"

 

Not sure where I am going wrong but any help is appreciated !

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

if Text.Contains([Campaign],"PMAX") and not Text.Contains([Campaign] ,"PLA") then  "PMAX"

else if not Text.Contains([Campaign],"PMAX") and Text.Contains([Campaign] ,"PLA") then  "PLA"

else "undefined"

View solution in original post

3 REPLIES 3
PhilSap
Frequent Visitor

thanks @lbendlin that worked!

v-pgoloju
Community Support
Community Support

Hi @PhilSap,

 

Just following up to check if the solution shared by our Super User @lbendlin  helped resolve your issue. If you're still facing difficulties or need further assistance, please let us know — we’re here to help!

If the response addressed your query, we kindly request you to mark it as Accepted Solution and click Yes if you found it helpful. This supports others in the community as well.

 

Best regards,

Prasanna Kumar

lbendlin
Super User
Super User

if Text.Contains([Campaign],"PMAX") and not Text.Contains([Campaign] ,"PLA") then  "PMAX"

else if not Text.Contains([Campaign],"PMAX") and Text.Contains([Campaign] ,"PLA") then  "PLA"

else "undefined"

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.