Hello,
I have a Excel sheet in which dates are in this format : YYYYMMDD without "/" separation,
So I used "Record Macro" - DATE -> Convert to change in to this format : DD/MM/YYYY, here the code it got me out :
Since I'm a Beginner I don't know if it's the correct way to convert that because i don't understand the code itself.
I'm asking if there is any other way with simplier code
I have a Excel sheet in which dates are in this format : YYYYMMDD without "/" separation,
So I used "Record Macro" - DATE -> Convert to change in to this format : DD/MM/YYYY, here the code it got me out :
VBA Code:
Range("A5", Range("A5").End(xlDown)).Select
Selection.TextToColumns Destination:=Range("A5", Range("A5").End(xlDown)), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
Semicolon:=False, Comma:=False, Space:=False, Other:=False, FieldInfo _
:=Array(1, 5), TrailingMinusNumbers:=True
Since I'm a Beginner I don't know if it's the correct way to convert that because i don't understand the code itself.
I'm asking if there is any other way with simplier code