opentext command

G

Guest

I am trying to open a text file as part of the workbook_open event handler.
when i manually import the text by dragging the .dat file into the workbook,
it (correctly) neglects carriage returns within fields, writing them as a
hollow square. However, when I import the text through the VBA command
opentext, it treats the carriage return as if it is the beginning of a new
record and everything goes haywire. are there specific paramters i can pass
in with opentext to have it do what the program does when i drag and drop??
thanks.
 
O

okaizawa

Hi,

Open method might be equivalent to dragging a file.
try:
Workbooks.Open "your_file_name.dat"

however, Open method doesn't have the same options as OpenText.
i wonder if it would do what you want actually...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top