Thread
:
macro "text to column" for excel
View Single Post
#
2
Posted to microsoft.public.excel.programming
Dave Peterson
external usenet poster
Posts: 35,218
macro "text to column" for excel
Maybe one of these will help:
With Selection
.TextToColumns Destination:=.cells(1), ....
....
With Selection
.TextToColumns Destination:=.cells(1).offset(0, 1), ....
....
I'm not sure where the results should be placed--start in the original
selection, or start in one column over.
wrote:
I want to automate the "text to column" function. I can created the macro;
however, when I rerun the macro on a new row/cell, it writes back to the
previous row/cell and overwrites what is there.
I need the macro to run in the new row/cell where my cursor is, and then not
rewrite back to any previous work.
Thanks
George Crain
--
Dave Peterson
Reply With Quote
Dave Peterson
View Public Profile
Find all posts by Dave Peterson