Sub Nbjourpat()
Compteurv = 0
For Each cellule In Range("DX3X10") 'Boucle dans la plage
If cellule.Value > 9 Then Compteurv = Compteurv + 1
If Macellule > 9 Then
cellule.Interior.ColorIndex = 3
Else
cellule.Interior.ColorIndex = 0
End If
Next cellule
MsgBox "Il y a " & CStr(Compteurv) & " Agents(s)avec plus de 9 jours de congé paternité colonne DX"
End Sub
A++Else
cellule.Interior.ColorIndex = 0
Sub Compte()
Compteurv = 0
Dim Macellule As Object 'Déclaration d'une variable
For Each Macellule In Range("DX3X10") 'Boucle dans la plage
If Macellule > 9 Then Compteurv = Compteurv + 1
If Macellule > 9 Then
MsgBox "Il y a " & CStr(Compteurv) & " Agents(s)avec plus de 9 jours de congé paternité colonne DX"
Macellule.Interior.ColorIndex = 4
Else
Macellule.Interior.ColorIndex = 0
End If
Next Macellule
End Sub
Sub compte_sup_trois()
Dim x As Double
x = 3
MsgBox Application.WorksheetFunction.CountIf(Range("nb_jour"), ">" & x)
End Sub
Sub compte_sup_troisBIS()
MsgBox Evaluate("=COUNTIF(nb_jour,"">3"")")
End Sub
Sub compte_sup_troisTER()
MsgBox [COUNTIF(nb_jour,">3")]
End Su