você inseriu muitos argumentos para esta função aninhada se

0

Eu quero inserir várias condições, mas o Excel mostra a mensagem "você inseriu muitos argumentos para essa função". O que eu quero fazer é:

  • Se AD4 e U4 forem iguais, insira "xxx"
  • Segundo: Se AD4 for branco, mas não U4, insira "xxx"
  • Terceiro: Se U4 estiver em branco, mas não em AD4, digite "xxx"

Você poderia me ajudar com isso?

=IF(AD4=U4,"REMOVE, RELOAD AND ALREADY PROCESSED UNDER BOTH DUNS", IF(ISBLANK((AD4),IF(NOT(ISBLANK(U4),"REMOVE, RELOAD AND REVERSE KEYING", IF(ISBLANK(U4),IF(NOT(ISBLANK(AD4),"REMOVE AND RELOAD"))))))))

    
por Andrea P 30.07.2018 / 17:31

1 resposta

0

=IF(UD4=AD4,"REMOVE, RELOAD...",IF(AND(ISBLANK(AD4),NOT(ISBLANK(U4))),"Remove, RELOAD, REVERSE KEYING",IF(AND(ISBLANK(U4),NOT(ISBLANK(AD4))),"Remove and reload")))

Você pode usar AND() em vez da configuração do tipo IF([x],if[y],... .

    
por 30.07.2018 / 19:41