Fonction Excel

geronimette77 Messages postés 5 Statut Membre -  
 tontong -
Bonjour,

J'ai (encore....) une fonction qui me donne du fil à retordre :

=SI(ET(OU(L8=1;L8=2);N8<>"");AU$27;"";SI(ET(OU(L8=3;L8=4);N8<>"");AU$29;"";SI(ET(OU(L8=5;L8=6;L8=7);N8<>"");AU$31;"";SI(ET(OU(L8=8;L8=9;L8=10);N8<>"");AU$33;""))))

Est-ce que quelqu'un peut me dire ce que j'ai fait qui ne va pas ?

Merci !!

1 réponse

  1. tontong
     
    bonjour,
    Il y a quelques ""; en trop
    =SI(ET(OU(L8=1;L8=2);N8<>"");AU$27;"";SI(ET(OU(L8=3;L8=4);N8<>"");AU$29;"";SI(ET(OU(L8=5;L8=6;L8=7);N8<>"");AU$31;"";SI(ET(OU(L8=8;L8=9;L8=10);N8<>"");AU$33;""))))
    Cela devrait donner ça:

    =SI(ET(OU(L8=1;L8=2);N8<>"");AU$27;SI(ET(OU(L8=3;L8=4);N8<>"");AU$29;SI(ET(OU(L8=5;L8=6;L8=7);N8<>"");AU$31;SI(ET(OU(L8=8;L8=9;L8=10);N8<>"");AU$33;""))))

    Cette erreur est courante le copier/coller.
    0