Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Conditional Calculations in Word.
Written by Allen Wyatt (last updated October 30, 2021)
This tip applies to Word 97, 2000, 2002, and 2003
One big benefit of using a spreadsheet program like Excel is the ability to create formulas that define results based on other information within the spreadsheet. Word is not Excel, but it does allow you to perform simple arithmetic based on the contents of a table. This can come in very handy in many instances.
What if you want to perform a conditional calculation, however? For instance, let's assume you have the following calculation field in a table cell:
{ = (B2-B1) }
What if you want to display the result only if B2 is not equal to zero? If B2 is zero, then you want the result displayed by the calculation to be zero.
To create conditional calculations, you use the IF field. This field causes Word to do a comparison, and then choose different results based on the outcome of the comparison. In this case, you want to test if B2 is equal to zero. If it is, then you want to return a value of zero. If it is not, then you want to do the subtraction. This is how such a compound field calculation would appear:
{ =IF (B2=0,0,B2-B1) }
The key factor in this IF formula is the comparison it performs. The comparison is the first element within the parentheses, in this case B2=0. The result of this comparison determines which of the following elements are used in the field. If the comparison is TRUE, then the first element (0) is used. If the comparison if FALSE, then the second element (B2-B1) is used. You can easily change the comparison to some other operation, if desired. For instance, if you want to make sure that zero was returned anytime that B2 was 0 or less, then you could use the formula B2<=0.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1671) 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: Conditional Calculations in Word.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
The COMPARE field is rather esoteric, but it can be helpful when you need to compare two values using fields. The result ...
Discover MoreYou can use a few bookmarks and an equation field to add a dynamic total anywhere in your document. Once in place, you ...
Discover MoreTired of messing with inserting the date and then changing it to a format that is more to your liking? There's a quick ...
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 © 2024 Sharon Parq Associates, Inc.
Comments