Sub
datum_uhrzeit_trennen()
Application.DisplayAlerts =
False
Range(
"Q2"
).
Select
Range(Selection, Selection.
End
(xlDown)).
Select
Application.CutCopyMode =
False
Selection.TextToColumns Destination:=Range(
"EA2"
), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=
True
, Tab:=
True
, _
Semicolon:=
False
, Comma:=
False
, Space:=
True
, Other:=
False
, FieldInfo _
:=Array(Array(1, 1), Array(2, 1)), TrailingMinusNumbers:=
True
Application.
GoTo
Reference:=
"R1C1"
Application.DisplayAlerts =
True
End
Sub