BUG: Unique Number Set Does Not Round Correctly with ROUND()

ID: Q130727

The information in this article applies to:

SYMPTOMS

A unique number set (.07125*533380) does not round correctly depending on the SET DECIMAL TO setting.

RESOLUTION

It rounds correctly if entered in the following way, regardless of the SET DECIMAL TO setting:

   ? ROUND(FIXED(.07125)*FIXED(533380),2)

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Problem

Type the following in the Command window:

   ? (.07125*533380)            Result=38003.32500
   SET DECI TO 8
   ? ROUND(.07125*533380,2)     Result = 38003.33
   SET DECI TO 9
   ? ROUND(.07125*533380,2)     Result = 38003.32

The result is rounded down when SET DECIMAL TO is set to 9 or higher, but the correct result occur when SET DECIMAL TO is set to 8 or lower.

Additional reference words: FoxWin FoxMac FoxDos 2.60a buglist2.60a KBCategory: kbprg kbbuglist KBSubcategory: FxprgGeneral

Last Reviewed: June 27, 1995