Hi all,
I have a problem, I set up a macro to format a column (fixed-width) with a date format DMY. It works fine on my PC but on a colleague's pc, it isn't working.
Here the code
Row data are formatted as general.
Why only on my pc the code works fine? Am I missing something?
Thanks to whom can help my to sort it out
I have a problem, I set up a macro to format a column (fixed-width) with a date format DMY. It works fine on my PC but on a colleague's pc, it isn't working.
Here the code
VBA Code:
Columns("A:A").Select
Selection.TextToColumns Destination:=Range("A1"), DataType:=xlFixedWidth, _
FieldInfo:=Array(0, 4), TrailingMinusNumbers:=True
Row data are formatted as general.
Planned_Start_Date |
17/01/2021 |
11/01/2021 |
11/03/2021 |
14/04/2021 |
Why only on my pc the code works fine? Am I missing something?
Thanks to whom can help my to sort it out