I have several workbooks containing a various number of worksheets (50+) each. Is it possible to automate the process of exporting each worksheet of a workbook to a text file?
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Excel Worksheets to Text (Excel 2000)
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Excel Worksheets to Text (Excel 2000)
- This topic has 10 replies, 4 voices, and was last updated 20 years, 6 months ago.
Viewing 5 reply threadsAuthorReplies-
H. Legare Coleman
AskWoody PlusOctober 29, 2004 at 4:50 pm #893308This code will create a text file from each worksheet in the workbook and store the files in the directory C:Work with the same file name as the sheet name in the workbook.
{pre]
Public Sub CreateTxt()
Dim oWS As Worksheet, oWB As Workbook
Dim strPath As String, strFName As String
strPath = “C:Work”
For Each oWS In Worksheets
oWS.Copy
ActiveWorkbook.SaveAs Filename:=strPath & oWS.Name, FileFormat:=xlTextWindows
Application.DisplayAlerts = False
ActiveWorkbook.Close
Application.DisplayAlerts = True
Next oWS
End Sub
[/pre] -
H. Legare Coleman
AskWoody PlusOctober 29, 2004 at 4:50 pm #893309This code will create a text file from each worksheet in the workbook and store the files in the directory C:Work with the same file name as the sheet name in the workbook.
{pre]
Public Sub CreateTxt()
Dim oWS As Worksheet, oWB As Workbook
Dim strPath As String, strFName As String
strPath = “C:Work”
For Each oWS In Worksheets
oWS.Copy
ActiveWorkbook.SaveAs Filename:=strPath & oWS.Name, FileFormat:=xlTextWindows
Application.DisplayAlerts = False
ActiveWorkbook.Close
Application.DisplayAlerts = True
Next oWS
End Sub
[/pre] -
WSsdckapr
AskWoody LoungerOctober 29, 2004 at 5:03 pm #893316Does something like this work? Change the path as appropriate and the fileformat if desired.
Option Explicit Sub SaveEachAsText() Dim sOriName As String Dim wks As Worksheet Dim sPath As String Dim sFilename As String sOriName = ActiveWorkbook.FullName sPath = "C:" For Each wks In Worksheets sFilename = sPath & wks.Name & ".txt" Application.DisplayAlerts = False ActiveWorkbook.SaveAs _ FileName:=sFilename, _ FileFormat:=xlTextMSDOS Next ActiveWorkbook.SaveAs _ FileName:=sOriName, FileFormat:=xlNormal Application.DisplayAlerts = True End Sub
Note: this will overwrite without warning any files that already have that file name! Remove the “Displayalerts = false” line if you want a warning.
Steve
-
WSsdckapr
AskWoody LoungerOctober 29, 2004 at 5:03 pm #893317Does something like this work? Change the path as appropriate and the fileformat if desired.
Option Explicit Sub SaveEachAsText() Dim sOriName As String Dim wks As Worksheet Dim sPath As String Dim sFilename As String sOriName = ActiveWorkbook.FullName sPath = "C:" For Each wks In Worksheets sFilename = sPath & wks.Name & ".txt" Application.DisplayAlerts = False ActiveWorkbook.SaveAs _ FileName:=sFilename, _ FileFormat:=xlTextMSDOS Next ActiveWorkbook.SaveAs _ FileName:=sOriName, FileFormat:=xlNormal Application.DisplayAlerts = True End Sub
Note: this will overwrite without warning any files that already have that file name! Remove the “Displayalerts = false” line if you want a warning.
Steve
-
WSJohnBF
AskWoody LoungerOctober 29, 2004 at 5:29 pm #893334Steve and Legare are too quick! One thought for both examples is that you might define the save location to be in the same folder as the current file, and to use the current file name as the first part of the file name, with:
strPath = Left(ActiveWorkbook.FullName, Len(ActiveWorkbook.FullName) – 4)
-
WSramonas
AskWoody Lounger -
WSsdckapr
AskWoody LoungerOctober 29, 2004 at 6:28 pm #893361Something like this?
Option Explicit Sub RangeAsText() Dim wkbS As Workbook Dim wkbNew As Workbook Set wkbS = ActiveWorkbook Set wkbNew = Workbooks.Add wkbS.Activate Range("ExportMe").Copy wkbNew.Sheets(1).Range("a1") Application.DisplayAlerts = False wkbNew.SaveAs _ FileName:="C:ExportName.txt", _ FileFormat:=xlTextMSDOS wkbNew.Close Application.DisplayAlerts = True End Sub
Steve
-
WSsdckapr
AskWoody LoungerOctober 29, 2004 at 6:28 pm #893362Something like this?
Option Explicit Sub RangeAsText() Dim wkbS As Workbook Dim wkbNew As Workbook Set wkbS = ActiveWorkbook Set wkbNew = Workbooks.Add wkbS.Activate Range("ExportMe").Copy wkbNew.Sheets(1).Range("a1") Application.DisplayAlerts = False wkbNew.SaveAs _ FileName:="C:ExportName.txt", _ FileFormat:=xlTextMSDOS wkbNew.Close Application.DisplayAlerts = True End Sub
Steve
-
-
WSramonas
AskWoody Lounger
-
-
WSJohnBF
AskWoody LoungerOctober 29, 2004 at 5:29 pm #893335Steve and Legare are too quick! One thought for both examples is that you might define the save location to be in the same folder as the current file, and to use the current file name as the first part of the file name, with:
strPath = Left(ActiveWorkbook.FullName, Len(ActiveWorkbook.FullName) – 4)
Viewing 5 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
AugLoop.All (TEST Augmentation Loop MSIT)
by
LarryK
1 hour, 14 minutes ago -
Boot Sequence for Dell Optiplex 7070 Tower
by
Serge Carniol
6 hours, 19 minutes ago -
OTT Upgrade Windows 11 to 24H2 on Unsupported Hardware
by
bbearren
9 hours, 52 minutes ago -
Inetpub can be tricked
by
Susan Bradley
11 hours, 11 minutes ago -
How merge Outlook 2016 .pst file w/into newly created Outlook 2024 install .pst?
by
Tex265
7 hours, 57 minutes ago -
FBI 2024 Internet Crime Report
by
Alex5723
13 hours, 41 minutes ago -
Perplexity CEO says its browser will track everything users do online
by
Alex5723
1 hour, 28 minutes ago -
Login issues with Windows Hello
by
CWBillow
1 day ago -
How to get into a manual setup screen in 2024 Outlook classic?
by
Tex265
12 hours, 40 minutes ago -
Linux : ARMO rootkit “Curing”
by
Alex5723
1 day, 12 hours ago -
Employee monitoring app leaks 21 million screenshots in real time
by
Alex5723
1 day, 12 hours ago -
Google AI is now hallucinating idioms
by
Alex5723
1 day, 12 hours ago -
april update
by
69800
15 hours, 8 minutes ago -
Windows 11 Insider Preview build 27842 released to Canary
by
joep517
1 day, 13 hours ago -
Quick Fix for Slowing File Explorer
by
Drcard:))
1 day, 14 hours ago -
WuMgr not loading?
by
LHiggins
9 hours, 48 minutes ago -
Word crashes when accessing Help
by
CWBillow
18 hours, 9 minutes ago -
New Microsoft Nag — Danger! Danger! sign-in to your Microsoft Account
by
EricB
1 day, 13 hours ago -
Blank Inetpub folder
by
Susan Bradley
1 day, 11 hours ago -
Google : Extended Repair Program for Pixel 7a
by
Alex5723
2 days ago -
Updates seem to have broken Microsoft Edge
by
rebop2020
1 day, 10 hours ago -
Wait command?
by
CWBillow
1 day, 17 hours ago -
Malwarebytes 5 Free version manual platform updates
by
Bob99
2 days, 6 hours ago -
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
2 days, 13 hours ago -
Windows 10 finally gets fix
by
Susan Bradley
2 days, 22 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.04.09.545
by
Alex5723
2 days, 23 hours ago -
How to use Skype after May?
by
Joann
1 day, 8 hours ago -
Win 7 MS Essentials suddenly not showing number of items scanned.
by
Oldtimer
2 days, 18 hours ago -
France : A law requiring messaging apps to implement a backdoor ..
by
Alex5723
3 days, 12 hours ago -
Dev runs Windows 11 ARM on an iPad Air M2
by
Alex5723
3 days, 13 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.