Sub test()
Dim derlig&
If Sheets("toto").FilterMode Then Sheets("toto").ShowAllData 'nom de la feuille à adapter
derlig = Cells(Rows.Count, "a").End(xlUp).Row
derlig = IIf(Cells(derlig, "a") = "", Cells(derlig, "a").End(xlUp).Row + 1, derlig + 1)
Cells(derlig, "a") = textbox1.Value
End Sub