Written by Allen Wyatt (last updated August 26, 2020)
This tip applies to Word 97, 2000, 2002, and 2003
There may be times when you want a macro to save information to a text file. This is very easy to do. All you need is to open the file for output, and then start sending information to the file. The following code fragment writes a text file using this method.
Open "MyFile.Dat" For Output As #1 Print #1, NumValues For J = 1 to NumValues Print #1, UserVals(J) Next J Close #1
The first thing written to the file is a numeric value indicating how many individual values will follow it. Then a For ... Next loop is used to create the balance of the file. You don't have to use this method of putting data in the file (number of values followed by individual values), but doing so makes it easy to read the information back from the file at a later time.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1754) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Saving Information in a Non-Document Text File.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
As you develop a document, Word keeps track of certain statistics about the document itself. Here is how you can review ...
Discover MoreWhen you start Word, it opens a blank document, ready for you to start typing within. If you don't want this blank ...
Discover MoreIf you need to make sure that the fonts in your document can be used by another person or on a different system, you'll ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments