Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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 !
Solved! Go to Solution.
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"
Hi @Anonymous,
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
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"
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 36 | |
| 33 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 73 | |
| 72 | |
| 38 | |
| 35 | |
| 26 |