Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am using an excel-form to write to an excel-list, but want to write to a
text file. I haven't got MSAccess on my computer. I am using Excel 2000. Please tell me I can and how. Thanks HennieJ |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Probably best to just use standard VBA commands: OPEN WRITE/PRINT CLOSE see VBA help. Sub WriteToFile() Open "c:\myfile.txt" For Append Access Write As #1 Print #1, "some text", "some more" Write #1, "some text", "some more" 'quoted (CSV files) Close #1 End Sub -- keepITcool | www.XLsupport.com | keepITcool chello nl | amsterdam Hennie wrote : I am using an excel-form to write to an excel-list, but want to write to a text file. I haven't got MSAccess on my computer. I am using Excel 2000. Please tell me I can and how. Thanks HennieJ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I embed a .lnk file in an Excel form? | Excel Discussion (Misc queries) | |||
How do you populate an HTML form with EXCEL or DB file? Is it possible? | Excel Discussion (Misc queries) | |||
File in 2007 form - need to get back to 2003 form... | Excel Discussion (Misc queries) | |||
How to copy from VBA form in to excel file | Excel Worksheet Functions | |||
Excel Form File Errors | Excel Discussion (Misc queries) |