Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
If txtGeburtstag.Text = "" Then
rngRow.Cells(, colAtGeburtstag).Value = ""
ElseIf IsDate(txtGeburtstag.Text) Then
rngRow.Cells(, colAtGeburtstag).Value = CDate(txtGeburtstag.Text)
Else
End If
Sub setDateCellFromFormField(byRef iFormField, byRef ioTargetCell As Range)
If iFormField.Text = "" Then
ioTargetCell.Value = ""
ElseIf IsDate(iFormField.Text) Then
ioTargetCell.Value = CDate(iFormField.Text)
End If
End Sub
setDateCellFromFormField txtGeburtstag, rngRow.Cells(, colAtGeburtstag)