Gruppe
Dialog
Problem
Ein Datum aus einer UserForm-TextBox soll bei aktivierter CheckBox an die erste freie Stelle einer Datumsreihe eingefügt werden.
ClassModule: frmInsertDate
Private Sub cmdCancel_Click()
Unload Me
End Sub
Private Sub cmdEintragen_Click()
Dim rng As Range
If chbInsert.Value = False Then Exit Sub
If Not IsDate(CDate(txtDate.Text)) Then
MsgBox "Kein gültiges Datum!"
txtDate.SetFocus
Exit Sub
End If
For Each rng In Worksheets("Data").Range("A5:A5,D6:D12").Cells
If IsEmpty(rng) Then
rng = CDate(txtDate.Text)
End
End If
Next rng
End Sub
StandardModule: Modul1
Sub CallForm()
frmInsertDate.Show
End Sub