re,
Pour le type de graphique peu importe j'ai déjà le code du graphique que je veux.
mets ce code dans l'USF, il te sélectionnera la ligne correspondant à ton choix dans l'USF
Private Sub CommandButton1_Click()
'Dan pour Calagan le 26/05/11
Dim Jour As String
Dim lg As Byte
Dim plage as range
Jour = ComboBox1.Value
Set Plage = Sheets("Feuil1").Range("A1:A" & Sheets("Feuil1").Range("A" & Rows.Count).End(xlUp).Row)
lg = Plage.Find(Jour, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=True).Row
Range("A" & lg & ":K" & lg).Select
Unload Me
End Sub
Amicalement