Private Sub Workbook_Open()
If Date > CDate(Sheets("Info").Range("B:B")) Then
MsgBox "Achtung, Datum überschritten"
End If
End Sub
Danke für eure Hilfe!
If Date > Application.WorksheetFunction.Min(Worksheets("Info").Range("B:B")) Then
MsgBox "Achtung, Datum überschritten"
End If
Gruß Matthias
Private Sub Workbook_Open()
If Date > CDate(Sheets("Info").Range("B:B")) Then
MsgBox "Achtung, Datum überschritten"
End If
End Sub
Danke für eure Hilfe!
If Date > Application.WorksheetFunction.Min(Worksheets("Info").Range("B:B")) Then
MsgBox "Achtung, Datum überschritten"
End If
Gruß Matthias