Nov 20, 2002 #1 bobibob Technical User Jun 28, 2001 13 SI Hi! I have one txt file and I would like to write a macro which would add some cell values from excel to the end of this file. Does anyone have any idea? Thanks
Hi! I have one txt file and I would like to write a macro which would add some cell values from excel to the end of this file. Does anyone have any idea? Thanks
Nov 20, 2002 1 #2 RobBroekhuis Technical User Oct 15, 2001 1,971 US Something like the following sequence would work: open "MyFile.txt" for append as #1 print#1,range("thisvalue",range("thatvalue" close#1 Rob Upvote 0 Downvote
Something like the following sequence would work: open "MyFile.txt" for append as #1 print#1,range("thisvalue",range("thatvalue" close#1 Rob