A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Re: saving one row as a text file (notepad)
Try a test to see if you get what you want...
Open a new workbook and paste one row of your data into the top row.
In another workbook, run this code - Note the new workbook must be active (displayed).
'---
Sub SaveSheetAsTextFileTest()
Dim strPath As String
strPath = "C:\Excel Files\General\BookTest1" '<<< REPLACE WITH CORRECT FILE PATH AND FILE NAME
ActiveSheet.SaveAs Filename:=strPath, FileFormat:=xlTextMSDOS
ActiveWorkbook.Close SaveChanges:=True
End Sub
'---
Open the saved file - is it what you need?
'---
Jim Cone