-1

I'm trying to return true or false on a excel spreadsheet where I have an email address in one cell and want to check if part of that adress contains certain text and return the value in the cell next to it. - is this possible? thanks

shgdit
  • 17
  • 1
  • 1
  • 3

1 Answers1

0

You should be able to knock something together using IF and FIND.

=IF(FIND(find_text,within_text)>0,"true","false")

If you need it to be case insensitive simply change everything to upper or lower case first

=IF(FIND(UPPER(find_text),UPPER(within_text))>0,"true","false")
John
  • 5,672
  • 7
  • 34
  • 52