Usar a função IFERROR
permite verificar se há um erro e retornar um valor se verdadeiro.
Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula. Use the IFERROR function to trap and handle errors in a formula.
A sintaxe para isso é IFERROR(value, value_if_error)
Portanto, você pode aninhar sua fórmula existente dentro de IFERROR
, como value
na sintaxe acima. Isso irá capturar o erro.
=IFERROR(IF(S4>8000,3,IF(S4>6000,2,IF(S4>4000,1,IF(S4<4000,0,IF(ISERROR(S4),1.5))))), 1.5)