Bonjour NeoChrom,
bienvenue au club!
Vois si cela peut te convenir avec, en prime (c'est Noël, quand même! ), un tri de tes colonnes "OP".
Private Sub Worksheet_Change(ByVal Target As Range)
'
Dim rCel As Range
'
If Not Application.Intersect(Target, Range("H4:H" & Rows.Count)) Is Nothing Then
iRow = Range("L" & Rows.Count).End(xlUp).Row
Set rCel = Range("L4:L" & iRow).Find(what:=Target.Value, searchorder:=xlByRows, searchdirection:=xlNext)
rCel.Offset(0, 1) = rCel.Offset(0, 1) + 1
Range("O4:P" & iRow).Sort key1:=Range("P4"), Order1:=xlDescending
End If
'
End Sub
Joyeuses Fêtes!
A+