Private Sub ComboBox12_Change()
Call WerteEintragen(ComboBox12, 12)
End Sub
Private Sub ComboBox13_Change()
Call WerteEintragen(ComboBox13, 13)
End Sub
Private Sub WerteEintragen(cbo, Zeile As Long)
Cells(Zeile, 1).Value = cbo.Value
End Sub
Gruß, Daniel