Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm new to this, but I need to import some data from a text file into
Excel. I need info a few things: 1. How to delimit the text file so that the information goes into the spreadsheet "gracefully" (in seperate cells). 2. Perhaps a resource or example illustrating the importing of a text file into Excel... link? 3. Recommendations on how to script this.... (python possible?) Thanks for the help ! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you're using Excel 2003 why don't use use XML and just do file -
open ? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Here's how I open a text file. Dim UF As Variant UF = Application.GetOpenFilename(FileFilter:="Text File (*.txt),*.txt", Title:="Open input file") If UF = "False" Then ' user hit cancel' Exit Sub End If Workbooks.OpenText Filename:=U -- Bruce00 ----------------------------------------------------------------------- Bruce001's Profile: http://www.excelforum.com/member.php...fo&userid=2663 View this thread: http://www.excelforum.com/showthread.php?threadid=50733 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I import text file of cash flow to excel file then use formula | Excel Discussion (Misc queries) | |||
Find text and return - NOOB question | Excel Discussion (Misc queries) | |||
How to transpose an excel worksheet having more than 10000 rows into a text file, may by tab delimit | Excel Programming | |||
How do I import text file, analyze data, export results, open next file | Excel Programming | |||
Import text file into excel with preset file layout, delimeters VBA | Excel Programming |