Se você estiver usando o Excel 2007 ou mais recente, poderá agrupar a função FIND()
em uma função IFERROR()
.
=IF((LEFT($B26,2)="<p"),0,IF($B26="",0,IF($F26<>"",0,IFERROR(FIND("""../",$B26),0))))
Para versões mais antigas do Excel que não suportam IFERROR()
, você pode usar a seguinte solução mais longa.
=IF((LEFT($B26,2)="<p"),0,IF($B26="",0,IF($F26<>"",0,IF(ISERROR(FIND("""../",$B26)),0,FIND("""../",$B26))))