Hallo Carsten, Reinhard,
vielen Dank für eure ausdauernde Hilfe.
Habe es jetzt hinbekommen.
Ein gutes Forum.
Gruß Skaletti!
Falls es interessiert, hier der jetzige Code im Modul der UserForm:
Private Sub CommandButton1_Click()
Dim erste_freie_Zeile As Integer
erste_freie_Zeile = Sheets(„Anmeldungsliste“).Range(„A65536“).End(xlUp).Offset(1, 0).Row
erste_freie_Zeile = Sheets(„Ergebniserfassung“).Range(„A65536“).End(xlUp).Offset(1, 0).Row
Sheets(„Anmeldungsliste“).Cells(erste_freie_Zeile, 2) = (TextBox1.Text)
Sheets(„Ergebniserfassung“).Cells(erste_freie_Zeile, 2) = (TextBox1.Text)
Sheets(„Anmeldungsliste“).Cells(erste_freie_Zeile, 3) = (TextBox2.Text)
Sheets(„Ergebniserfassung“).Cells(erste_freie_Zeile, 3) = (TextBox2.Text)
Sheets(„Anmeldungsliste“).Cells(erste_freie_Zeile, 4) = ComboBox1.Text
Sheets(„Ergebniserfassung“).Cells(erste_freie_Zeile, 4) = ComboBox1.Text
Select Case Cells(erste_freie_Zeile, 4).Value
Case („Schüler“)
Sheets(„Anmeldungsliste“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 3
Sheets(„Ergebniserfassung“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 3
Case („Jugend passiv“)
Sheets(„Anmeldungsliste“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 4
Sheets(„Ergebniserfassung“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 4
Case („Jugend aktiv“)
Sheets(„Anmeldungsliste“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 5
Sheets(„Ergebniserfassung“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 5
Case („Schützen passiv“)
Sheets(„Anmeldungsliste“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 6
Sheets(„Ergebniserfassung“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 6
Case („Schützen aktiv“)
Sheets(„Anmeldungsliste“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 7
Sheets(„Ergebniserfassung“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 7
Case („Damen“)
Sheets(„Anmeldungsliste“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 8
Sheets(„Ergebniserfassung“).Cells(erste_freie_Zeile, 4).Font.ColorIndex = 8
End Select
Unload Me
End Sub