Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi I'm trying to insert text from a .txt file into excel 03 and have i start in a specific cell. the information also needs to be delimite with the delimiters being the tabs. the info is about 2200rows long and 17 colomns wide. Ideally th information should start from c7. I can get the text to fill the scree but nothing i do seems to change its position. any help would be great Mat -- matthewwooki ----------------------------------------------------------------------- matthewwookie's Profile: http://www.excelforum.com/member.php...fo&userid=2750 View this thread: http://www.excelforum.com/showthread.php?threadid=47017 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Matt,
Unless you have good reason to use the FSO, Excel has it own import feature; check out Data Get External Data Import Text File. Record a macro as you do it if you need the code. NickHK "matthewwookie" wrote in message news:matthewwookie.1vt6id_1127473531.6434@excelfor um-nospam.com... Hi I'm trying to insert text from a .txt file into excel 03 and have it start in a specific cell. the information also needs to be delimited with the delimiters being the tabs. the info is about 2200rows long and 17 colomns wide. Ideally the information should start from c7. I can get the text to fill the screen but nothing i do seems to change its position. any help would be great Matt -- matthewwookie ------------------------------------------------------------------------ matthewwookie's Profile: http://www.excelforum.com/member.php...o&userid=27503 View this thread: http://www.excelforum.com/showthread...hreadid=470177 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thanks for that last bit of info about the importing it from another source. However, for some reason, the option to do so is always grayed out! is there a prereq that i have to do before i'm allowed to import? Thanks for the code update...however in the main section...the AtEndOfStream line has a debug error. any ideas? Cheers for the help Matt -- matthewwookie ------------------------------------------------------------------------ matthewwookie's Profile: http://www.excelforum.com/member.php...o&userid=27503 View this thread: http://www.excelforum.com/showthread...hreadid=470177 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Here's the whole code again (check to change the path to textfile;)) Code: -------------------- Dim ts Public Sub open_textstream(path As String) Set fs = CreateObject("Scripting.FileSystemObject") Set file = fs.GetFile(path) Set ts = file.OpenAsTextStream(1, -2) End Sub Public Sub close_textstream() ts.Close End Sub Private Sub commandbutton1_click() Call open_textstream("N:\wtsrv\profiles\ziviw3\Desktop\ test.txt") Call main Call close_textstream End Sub Sub main() Do While ts.AtEndOfStream < True data = ts.readline() dat = Split(data, Chr(9)) 'i think chr(9) was TAB For i = 0 To UBound(dat) Cells(countrows + 7, i + 3) = dat(i) Next i countrows = countrows + 1 Loop End Sub -------------------- I think the problem was the "dim ts" line. I got the same problem after deleting it. I tried this one and it worked at my computer, so i think it should work at yours, too. If it doesn't work, blame Microsoft ;) Regards, Simon PS: If it still doesnt work, try to contact me via ICQ (123696416) everyday after 6pm(CET) or weekends. -- moondark ------------------------------------------------------------------------ moondark's Profile: http://www.excelforum.com/member.php...o&userid=27390 View this thread: http://www.excelforum.com/showthread...hreadid=470177 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Matt,
Can't say I have ever seen that, but at a guest it may be because the text filters were not installed initially. rerun the Office installation, choosing Add/remove features and see if there anything obvious to included. NickHK "matthewwookie" wrote in message news:matthewwookie.1vykyd_1127725525.5013@excelfor um-nospam.com... Thanks for that last bit of info about the importing it from another source. However, for some reason, the option to do so is always grayed out! is there a prereq that i have to do before i'm allowed to import? Thanks for the code update...however in the main section...the AtEndOfStream line has a debug error. any ideas? Cheers for the help Matt -- matthewwookie ------------------------------------------------------------------------ matthewwookie's Profile: http://www.excelforum.com/member.php...o&userid=27503 View this thread: http://www.excelforum.com/showthread...hreadid=470177 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I insert a photo into a specific cell? | Excel Discussion (Misc queries) | |||
insert a row with enter on a specific cell | Excel Discussion (Misc queries) | |||
insert text to a specific cell | Excel Programming | |||
macro to insert row after specific text | Excel Discussion (Misc queries) | |||
Insert cell/format/text/fontsize and auto insert into header? | Excel Programming |