XL: MOD Function and Mod Operator Return Different ValuesLast reviewed: February 2, 1998Article ID: Q141178 |
The information in this article applies to:
SYMPTOMSIn Microsoft Excel, the result returned by the worksheet MOD function may be different from the result returned by the Visual Basic for Applications Mod operator.
CAUSEThis problem occurs if you use a negative divisor with the MOD function. In general, the MOD function returns the remainder after a number is divided by a divisor. The built-in Microsoft Excel function uses the formula
MOD(n,d)=n-d*INT(n/d)where n is the number and d is the divisor. If the divisor is a positive number, the results returned by the MOD worksheet function and the Visual Basic for Applications Mod operator are the same. For example, =MOD(17,3) on a worksheet and 17 Mod 3 on a module sheet will return the same value of 2. The difference between the MOD worksheet function and the Mod operator occurs because of the way Microsoft Excel uses the INT function. The INT function returns the first negative integer less than or equal to the number. For example, =INT(17,-3) will return -6, because 17 divided by -3 is equal to -5.6666667 and the closest integer that is less than or equal to -5.6666667 is -6. The result of using the INT function is what makes the worksheet MOD function return a different value than the Mod operator. The Mod operator does not use the same formula containing the INT function and, therefore, it returns a different result with a negative divisor.
WORKAROUNDTo return the same answer that the Mod operator returns with a negative divisor, enter the following formula into a worksheet instead of using the built-in Microsoft Excel MOD function
=N-D*QUOTIENT(N,D)where N is the number and D is the divisor. NOTE: You must have the Analysis ToolPak installed to use the QUOTIENT function. For additional information on both the INT and MOD functions, please see the following articles in the Microsoft Knowledge Base:
ARTICLE-ID: Q119083 TITLE : Excel: MOD() Function Returns #NUM! Error Value ARTICLE-ID: Q124107 TITLE : XL: Can't Specify Number of Digits with Fix() or Int() STATUSMicrosoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
REFERENCESFor more information about the MOD function or the Mod operator, click the Answer Wizard tab in Microsoft Excel 7.0 Help, type the following text
MODand then double-click the selected text to go to the desired topic.
|
Additional query words: 5.00 5.00a 5.00c 7.00 7.00a 97 98 XL98 XL97 XL7 XL5
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |