Catégories
Fonction Logique Excel

Fonction ET() : tester une condition avec ET

Partager :

La fonction ET() renvoie VRAI si toutes les arguments de la fonction sont exacts. ET() appartient aux fonctions logiques d'Excel.

La syntaxe ET

La fonction Excel ET suit la syntaxe suivante :

ET(argument1;argument2;…)

où :

  • argument1 est la première condition
  • argument2 est la deuxième condition
  • … signifie que l’on peut ajouter jusqu’à 255 conditions

La fonction ET en exemple

La formule ET

 ABCDE
1Note 1Note 2Appréciation  
21014=SI(ET(A2>=10;B2>=10);"bien";"nul")  
3812=SI(ET(A3>=10;B3>=10);"bien";"nul")  
41315=SI(ET(A4>=10;B4>=10);"bien";"nul")  

Le résultat

 ABCDE
1Note 1Note 2Appréciation  
21014bien  
3712nul  
41315bien