Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi hope someone can help
i can write values from excel to a txt file but it overwrites the exsisting value in the txt file can someone please tell me how you can just update the txt file with the new values Andy |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
what about opening the old version in Excel, making your changes, and then
saving it again as the text file? Sarah -- Message posted via http://www.officekb.com |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Andy
Append, like this: Sub test() Dim iFnum As Integer iFnum = FreeFile Open "C:\temp\text.txt" For Append As #iFnum Print #iFnum, Now Close #iFnum End Sub HTH. Best wishes Harald "andy" skrev i melding ... hi hope someone can help i can write values from excel to a txt file but it overwrites the exsisting value in the txt file can someone please tell me how you can just update the txt file with the new values Andy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
changes in destination file should update sourse file | Excel Discussion (Misc queries) | |||
Macro to pull data from another file - update name of file | Excel Discussion (Misc queries) | |||
i want to update one excel file the other one update automaticaly | New Users to Excel | |||
Automatic update of links in destination file when source file mo. | Excel Discussion (Misc queries) | |||
Automate open file, update links, run macro, close and save file | Excel Programming |