Function ajout_ligne(nom_feuille, valeur)
Dim ligne As Long, y As Single
Dim x As String
x = nom_feuille
y = valeur
ligne = Sheets(x).Range("A65000").End(xlUp).Offset(0, 0).Row
MsgBox ligne
MsgBox x
Sheets(x).Range("A" & ligne) = Now
Sheets(x).Range("B" & ligne) = y
End Function