Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can i export excel data into text file

Status
Not open for further replies.

mukka

Technical User
Aug 10, 2004
1
US
Hi Techs,
i had four excel sheets filled with data,i need to read respective rows concatinating and finally put as a single row in a text file.
Pls help
-Chak
 
Its worth having a look at the Print & Write help files in VBA
 
If you need some help with the excel row values you need to find and concatenate let me know.....but if not just do all that and save it as a text file......just replace my bullshit path and filename below with your path and file name.



Application.DisplayAlerts = False
ActiveWorkbook.SaveAs Filename:="\\LOUISE\PRODCONT\My Excel Files\Quote\RFQMASTER-RFQMASTER.txt", FileFormat:=xlText, CreateBackup:=False

Workbooks("RFQMASTER-RFQMASTER.txt").Close
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top