View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] Ryan@newsgroups.nospam is offline
external usenet poster
 
Posts: 18
Default find from Excel VBA a text file last row

Change this line : Open Filename For Output As #1
To : Open Filename For Append As #1

Then it will just add the data to the end of the file.

Ryan

"0000_AAAA_0000" wrote:


Hi!

I am trying to export to a text file an excel range.

this text file must be updated every X time so when importing new cells
to the Text file, I dont want to delete the previous data.
I mean

if today

text file's:
1 row= Hello
2Row= hi




and I have to export Bye

my text file's 3row must Bye

text file

1 row= Hello
2Row= hi
3row=Bye



How do i know a Specific text file's last row??


Sub How()
Dim Filename As String
Filename = "C:\windows\desktop\XXX.txt"
Open Filename For Output As #1
Write #1, Data;'data comes from one other source
'Close #1
End Sub


--
0000_AAAA_0000
------------------------------------------------------------------------
0000_AAAA_0000's Profile: http://www.excelforum.com/member.php...o&userid=12480
View this thread: http://www.excelforum.com/showthread...hreadid=268898