Voilà le code terminé qui se déclenche lorsque je clique n'importe où dans la colonne AC.
If Not Application.Intersect(Target, Columns("AC:AC")) Is Nothing Then
If Range("G6").Value = Range("H6").Value Then
If Range("H6").Value < 0 Then
MsgBox "DAYS ROTATIONS FACTOR IS LOW !"
Else
MsgBox "DAYS ROTATIONS FACTOR IS HIGH !"
End If
End If
If Range("O6").Value = Range("P6").Value Then
MsgBox "EXTENSION FLAT!"
ElseIf Range("O6").Value > Range("P6").Value Then
MsgBox "EXTENSION HIGH !"
Else
MsgBox "EXTENSION LOW !"
End If
If Range("W6").Value = Range("X6").Value Then
MsgBox "POC FLAT!"
ElseIf Range("W6").Value > Range("X6").Value Then
MsgBox "POC HIGHER !"
Else
MsgBox "POC LOWER !"
End If
If Range("AE6").Value = Range("AF6").Value Then
If Range("AF6").Value < 0 Then
MsgBox "VA ROTATIONS FACTOR IS LOW !"
Else
MsgBox "VA ROTATIONS FACTOR IS HIGH !"
End If
End If
End If
End Sub