Bonsoir,
votre fichier en retour avec ce code :
Sub TestLRD()
Dim Cel As Range, Entête As Range, ColZone As Range
Dim ColType As Integer, LigZone As Long, LeType, LaZone
LeType = Range("B14")
LaZone = Range("B15")
Set Entête = Range("B2:N2")
Set Cel = Entête.Find(LeType, LookIn:=xlValues, lookat:=xlWhole)
If Not Cel Is Nothing Then
ColType = Cel.Column
Set ColZone = Range("A3:A11")
Set Cel = ColZone.Find(LaZone, LookIn:=xlValues, lookat:=xlWhole)
If Not Cel Is Nothing Then
LigZone = Cel.Row
Range("B16") = Cells(LigZone, ColType).Value
End If
End If
End Sub
@ bientôt
LouReeD