WD: Sample Function to Determine If Value Is Odd/EvenLast reviewed: July 30, 1997Article ID: Q86765 |
The information in this article applies to:
SUMMARYThe following Microsoft Visual Basic for Applications / WordBasic macro code checks to see if the number 11 is odd or even. You can substitute another number or a numeric variable for the number 11.
If 11 Mod 2 = 0 Then Print "Number is even" Else Print "Number is odd" End IfThe MOD operator divides two numbers and returns only the remainder. For example, the result of the expression 19 MOD 7 is 5. The numbers can be any numeric expressions.
REFERENCES"Using WordBasic," by WexTech Systems and Microsoft, page 227 "Word for Windows and OS/2 Technical Reference", page 191 Kbcategory: kbusage kbmacro KBSubcategory: kbwordvba |
Additional query words: 1.0 1.10 1.10a 2.0 2.0a 6.0 6.0.1 7.0
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |