I have a macro that imports data from the web and puts it into four different columns- A, H, O, and V. I'd like to space the web data out over 7 columns (so from A through G for the first column of data, H through N for the second column of data, and so on). When I tried using this piece of code multiple times, the debugger told me it could only be used on one column at a time. Does anybody know how to apply it to multiple columns in one macro?
Thanks in advance!
Thanks in advance!
Code:
Range("A10").CurrentRegion.TextToColumns Destination:=Range("A10"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
Semicolon:=False, Comma:=True, Space:=False, Other:=False