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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Multiple And conditions within text.Contains

Hi,

 

I'm trying to write a statement so that if a cell  within a specified column contains 2 or more specified strings then add value to another column

 

e.g. say I was using email To line data. If the To line (Column A) contained both "john.smith@gmail.com" and "smith.john@gmail.com" then fill Column B with "Multiple Inboxes"

 

delimiter used in this case between emails would be ";"

 

I have tried the following but does neither seem to work:

 

 

= if Text.Contains([DisplayTo], "john.smith@gmail.com") and Text.Contains([DisplayTo],"smith.john@gmail.com") then "Multiple Inboxes"
else "Not Applicable")

= if Text.Contains([DisplayTo], "john.smith@gmail.com" and "smith.john@gmail.com") then "Multiple Inboxes"
else "Not Applicable")

 

 

1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

Hi @Anonymous ,

 

I think first codes should be correct.

=
if Text.Contains([DisplayTo], "john.smith@gmail.com") and Text.Contains([DisplayTo],"smith.john@gmail.com") then "Multiple Inboxes"
else "Not Applicable"

Please make sure the specified strings in your code are correct. In my sample it works.

1.png

 

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-rzhou-msft
Community Support
Community Support

Hi @Anonymous ,

 

I think first codes should be correct.

=
if Text.Contains([DisplayTo], "john.smith@gmail.com") and Text.Contains([DisplayTo],"smith.john@gmail.com") then "Multiple Inboxes"
else "Not Applicable"

Please make sure the specified strings in your code are correct. In my sample it works.

1.png

 

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.