Sub RechercheEtSelection()
Dim Cellule As Range
ValeurCherchee = Range("Location!b6").Value
Set Cellule = Range("c3:bb3").Find(what:=ValeurCherchee, LookIn:=xlValues, lookat:=xlWhole)
If Not Cellule Is Nothing Then Range(Cellule, Cellule(1, 7)).Select
End Sub