Sub Text_zu_Datum()
Dim dDate As Date
Dim Bereich As Range
Set Bereich = Range(Selection.Address)
For Each Cell In Bereich
If IsDate(Cell.Value) Then
dDate = Cell.Value
Cell.Value = dDate
End If
Next
Keine Kommentare:
Kommentar veröffentlichen