TextToColumns gets me a #VALUE error.
The code is:
Public Function Text2Columns(ByVal input2use As Range)
Dim output As Range
output = Range("NATDump!B1")
input2use.TextToColumns output, , , , , , , True
End Function
> Justin,
> How far does TextToColumns get you ?
[quoted text clipped - 24 lines]
> >
> > Any thoughts? If it's easier, I might just write a program to do it.
NickHK - 14 Dec 2006 02:28 GMT
Justin,
Not sure how you are using that code, but recoding a macro will give you the
arguments.
NickHK
P.S. Your function does not return a value, which is all worksheet functions
can do.
> TextToColumns gets me a #VALUE error.
> The code is:
[quoted text clipped - 33 lines]
> > >
> > > Any thoughts? If it's easier, I might just write a program to do it.