I have a line of code for text to column with comma as the delimiter.
A month ago this was working as expected. Although now it also appears to be including space as a delimiter.
For example, when it was working the following text:
would be converted to:
Although now it appears to be also including space as a delimiter and is converting it to:
Why is it all suddenly including space as a delimiter? has there been any updates which would default the space delimiter to True?
Should I also include space:=false in the code?
Regards
Glenn
VBA Code:
ws.Columns(1).TextToColumns Destination:=ws.Range("A1"), DataType:=xlDelimited, comma:=True
For example, when it was working the following text:
Tuesday 23 05 2023 07_29_01 AM_AM_NF_LeftRear |
7:46:57 AM,AM,NF,LeftRear,638203877138070000, |
would be converted to:
Tuesday 23 05 2023 07_29_01 AM_AM_NF_LeftRear | |||
7:46:57 | AM | NF | 6.38E+17 |
Although now it appears to be also including space as a delimiter and is converting it to:
Tuesday | 23 | 5 | 2023 | 07_29_01 AM_AM_NF_LeftRear | |
7:46:57 | AM | AM | NF | LeftRear | 6.38E+17 |
Why is it all suddenly including space as a delimiter? has there been any updates which would default the space delimiter to True?
Should I also include space:=false in the code?
Regards
Glenn