GNOME Bugzilla – Bug 631364
Bad value computed on reference rounding
Last modified: 2010-10-05 01:03:18 UTC
Created attachment 171728 [details] Buggy Gnumeric reference rounding document Gnumeric 1.10.10 on Maemo Linux (Nokia N900 phone). All literal values entered are NN.NN for decimal hours on a time card. Bad value computed: 232.30 G18=sum(G2:G17) # 83.97 I18=sum(I2:I17) # 49.86 F18=sum(F2:F17) # 62.08 H18=sum(H2:H17) # 44.42 F19=(G18+I18)-(F18+H18) # 27.33 H19=8.5 # 8.50 I19=round(F19*H19,2) # 232.30 I21=round(round(F19,2)*H19,2) # 232.31
Some of the numbers in your example have no exact base 2 representation. So working with approximations of those numbers will yield sum unexpected results. *** This bug has been marked as a duplicate of bug 509965 ***