Importing from a text file

R

Robert

I'm having issues using the Public Sub ImportTextFile from the
cpearson site. I am trying to import a datafile that was written
using VMS's DCL language. When I manually copy and paste the data
into an excel sheet, the file shows up correctly. When I try and use
the ImportTextFile to do it instead, it puts all the data in cell A1.

I will gladly send someone some sample output -- if I paste it here
the carriage return is changed and then it magically works.

I think there is a problem with the way the carriage return is
interperated, but I'm not sure. Does anyone know a way to import into
excel from VMS so it shows up correctly?
 
C

Chip Pearson

Make sure you are using the correct delimiter character and that the lines
in the text file end with vbNewLine. It sounds like the code isn't finding
the specified delimiter characters in the imported text, and therefore
doesn't split apart the columns and rows.

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)
 
R

Robert

I actually don't want a delimiter -- the code I use is expecting all
the content to be in Column A. I just want all the individual lines
from the text file put on a single row in Column A. Will the
ImportTextFile program work without delimiters? And I'm not sure what
kind of carriage return is at the end of each line. Do you know of a
way to find the ascii value and convert it to a vbNewLine character?
 

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