Não é bonito, mas você pode usar algo assim na Cell B3:
=IF(IFERROR(SEARCH("San Francisco",A3),0),"San Francisco",IF(IFERROR(SEARCH("New York",A3),0),"New York",IF(IFERROR(SEARCH("Seattle",A3),0),"Seattle","")))
Para facilitar a visualização:
IF(
IFERROR(SEARCH("San Francisco",A3),0)
,"San Francisco"
,IF(
IFERROR(SEARCH("New York",A3),0)
,"New York"
,IF(
IFERROR(SEARCH("Seattle",A3),0)
,"Seattle"
,""
)
)
)
Para dividi-lo, basicamente você usa SEARCH para descobrir se ele contém uma string de texto e retorna 1 ou #VALUE! Eu então uso o IFERROR para manipular #VALUE! e, em vez disso, mude para 0.
As instruções IF estão aninhadas:
IF (San Francisco)
[true] "San Francisco"
[false] IF (New York)
[true] "New York"
[false] IF (Seattle)
[true] "Seattle"
[false] ""