> > "FieldInfo:=Array(Array(1, 2), Array(2, 2)...." And to make the
> > FieldInfo:=Array convert the information to TEXT instread of general?
>
> If you want to import all the columns, but only specifically format a few of
> them, you can do that to. Any columns you don't specify will be imported as
> general. If you want a column as something other than general, you have to
> identify it. The columns can be identified in any order.
>
> To make column 4 text: Array(4, xlTextFormat)
**** to clarify, if I want all the columns text then I would use
FieldInfo:=Array(Array(1, xlTextFormat), Array(2, xlTextFormat)....
Bookmarks