Written by Allen Wyatt (last updated March 9, 2019)
This tip applies to Word 97, 2000, 2002, and 2003
In Word, macros are written in a language called Visual Basic for Applications, or VBA. When you write a macro, you need to test it and correct any errors in the macro. This process is called debugging. The process of debugging a macro is the same as debugging in any other programming language. All you need to do is step through the macro, one command at a time, and make sure it works as you think it should. You do this by viewing both the windows for your macro and a test document. As you step through the macro (using the commands available in the Debug menu of the VBA Editor), you can correct any errors you locate.
As you are debugging macros, you need to make sure you think through every possible way the macro could be used and all the possible conditions that could exist at the time the macro is invoked. Try the macro out in all these ways and under all these conditions. In this way, you will make your macro much more useful.
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 (751) applies to Microsoft Word 97, 2000, 2002, and 2003.
Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2013. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word 2013 Step by Step today!
Want your macro to change the Hidden attribute for some text in your document? It's easier to change than you might think.
Discover MoreNeed to do some macro processing of documents in the user's My Documents folder? First step is to figure out where the ...
Discover MoreFormulas created in a macro have a specific order in which operations are performed. This is known as precedence, as ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-12-16 20:07:04
Allan
Hi,
I have come across this macro in youtube which you separate the mail merge in individual custom file. However, every time I run the macro it pop-up an
Run-time error '4198': Command failed (debug message) but it would generate the letters and save it individually as it suppose to be.
I can't seem to find the problem with the string. Hope you can help me with this...
singleDoc.SaveAs2 _
FileName:=masterDoc.MailMerge.DataSource.DataFields("DocFolderPath").Value & "\" & _
masterDoc.MailMerge.DataSource.DataFields("DocFileName").Value & ".docx", _
FileFormat:=wdFormatXMLDocument
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 © 2024 Sharon Parq Associates, Inc.
Comments