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. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
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, 7 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
-
Dedoimedo tries 24H2…
by
Cybertooth
30 minutes ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
22 hours, 9 minutes ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
19 hours, 29 minutes ago -
Small desktops
by
Susan Bradley
2 hours, 37 minutes ago -
Totally disable Bitlocker
by
CWBillow
20 hours, 31 minutes ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
19 hours, 46 minutes ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
2 days, 2 hours ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
2 hours, 59 minutes ago -
Mystical Desktop
by
CWBillow
2 days, 5 hours ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
1 day, 10 hours ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
2 hours, 39 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
2 days, 20 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
2 days, 23 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
2 days, 21 hours ago -
What is wrong with simple approach?
by
WSSpoke36
19 hours, 37 minutes ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
3 days, 8 hours ago -
Location, location, location
by
Susan Bradley
1 day, 23 hours ago -
Cannot get a task to run a restore point
by
CWBillow
3 days, 10 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
3 days, 1 hour ago -
June 2025 Office non-Security Updates
by
PKCano
3 days, 21 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
1 day, 23 hours ago -
Firefox Red Panda Fun Stuff
by
Lars220
3 days, 21 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
4 days, 7 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
3 days, 10 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
4 days, 16 hours ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
4 days, 16 hours ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
4 days, 5 hours ago -
Firefox 139
by
Charlie
3 days, 22 hours ago -
Who knows what?
by
Will Fastie
3 days ago -
My top ten underappreciated features in Office
by
Peter Deegan
1 day, 3 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.