Bonjour
Pour récupérer l'information de la liste déroulante
Private Sub CbxPersonne_Change()
Msgbox CbxPersonne.Text
End Sub
Pour ajouter à la BDD
Private Sub BtnAjout_Click()
Dim derLigne
Dim sh As Worksheet
Set sh = Sheets(CbxMois.Text)
derLigne = sh.Cells(sh.Rows.Count, 1).End(xlUp).Row
ligne = derLigne + 1
sh.Cells(ligne, 1) = FMRSaisie.CbxPersonne.Text
sh.Cells(ligne, 2) = FMRSaisie.CbxOpération.Text
sh.Cells(ligne, 3) = FMRSaisie.CbxCatégorie.Text
sh.Cells(ligne, 4) = FMRSaisie.TextBox1.Text
End Sub