ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   I need to export to text file a column (https://www.excelbanter.com/excel-programming/309449-i-need-export-text-file-column.html)

Mark

I need to export to text file a column
 
I need to export to text file a column starting in C5, BUT I don't know how
many entry in the column.
How can it be done?
Many Thanks
M

Tom Ogilvy

I need to export to text file a column
 
activesheet.copy
With Activesheet
set rng = .Range(.Range("C5"),.Range("C5").End(xldown))
.rows(rng.rows(rng.rows.count).row & ":65536").Delete
rng.copy .Range("A1")
.Range("B:IV").EntireColumn.Delete
End with
Activeworkbook.SaveAs "C:\Files\MyText.csv, FileFormat:=xlCSV


--
Regards,
Tom Ogilvy



"mark" wrote in message
...
I need to export to text file a column starting in C5, BUT I don't know

how
many entry in the column.
How can it be done?
Many Thanks
M




Mark

I need to export to text file a column
 
Hi,
I actually need to add the word Check before the entry of the column and
the word Done after.
For example: 77777
98988
98881

Will need to be exported as:
Check 77777 Done
Check 98988 Done
Check 98881 Done

How can I amend your code to do that.

Many thanks
M

"Tom Ogilvy" wrote:

activesheet.copy
With Activesheet
set rng = .Range(.Range("C5"),.Range("C5").End(xldown))
.rows(rng.rows(rng.rows.count).row & ":65536").Delete
rng.copy .Range("A1")
.Range("B:IV").EntireColumn.Delete
End with
Activeworkbook.SaveAs "C:\Files\MyText.csv, FileFormat:=xlCSV


--
Regards,
Tom Ogilvy



"mark" wrote in message
...
I need to export to text file a column starting in C5, BUT I don't know

how
many entry in the column.
How can it be done?
Many Thanks
M






All times are GMT +1. The time now is 12:14 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com