I've a problem which I'm trying to solve at the moment. It concerns converting formats in an excel file, which drives me crazy.
Import raw data from excel into another excel
Now I've found a way where I'm optimistically that it could solve the issues. To "fix" it I'm using the functionality "text in rows" -> as VBA recorded as
Selection.TextToColumns Destination:=range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
Semicolon:=False, Comma:=False, Space:=False, Other:=False, FieldInfo _
:=Array(1, 1), TrailingMinusNumbers:=True
I've learned, that it is possible to use this code to fix one row but not many at once. Now I'd like to know, how this code can be improved, that it fix a range ("A7", "DR621") at once.
I'd be very happy if someone could assist me and point me in the right direction.
Thanks in advance Arthur