#1   Report Post  
DeeJay
 
Posts: n/a
Default Multiplication error

I noticed that Excel 2003 calculates:
7.5*1.2=8.7 when the correct answer is 9.0. It did this as part of a
formula where the 1.2 answer came from calculating another set of numbers.
When I asked Excel to calculate this answer by simply inputting those two
numbers the correct answer of 9.0 came out. Does anyone have an answer as to
why it does that?!
  #2   Report Post  
Anne Troy
 
Posts: n/a
Default

Hmmm.... 8.7. Well, 7.5+1.2=8.7. Are you sure there's not a plus sign in
there?
*******************
~Anne Troy

www.OfficeArticles.com


"DeeJay" wrote in message
...
I noticed that Excel 2003 calculates:
7.5*1.2=8.7 when the correct answer is 9.0. It did this as part of a
formula where the 1.2 answer came from calculating another set of numbers.
When I asked Excel to calculate this answer by simply inputting those two
numbers the correct answer of 9.0 came out. Does anyone have an answer as

to
why it does that?!



  #3   Report Post  
Mangus Pyke
 
Posts: n/a
Default

On Tue, 19 Jul 2005 21:17:01 -0700, DeeJay wrote:
I noticed that Excel 2003 calculates:
7.5*1.2=8.7 when the correct answer is 9.0. It did this as part of a
formula where the 1.2 answer came from calculating another set of numbers.
When I asked Excel to calculate this answer by simply inputting those two
numbers the correct answer of 9.0 came out. Does anyone have an answer as to
why it does that?!


Decimal operations in the number from which one of your final
multipliers are derived?

MP-
--
"Learning is a behavior that results from consequences."
B.F. Skinner
  #4   Report Post  
Debra Dalgleish
 
Posts: n/a
Default

The cell that contains 1.2 is probably rounded.

Select the cell, and click the Increase Decimal button on the toolbar.
Perhaps you'll see that it's 1.16

DeeJay wrote:
I noticed that Excel 2003 calculates:
7.5*1.2=8.7 when the correct answer is 9.0. It did this as part of a
formula where the 1.2 answer came from calculating another set of numbers.
When I asked Excel to calculate this answer by simply inputting those two
numbers the correct answer of 9.0 came out. Does anyone have an answer as to
why it does that?!



--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

  #5   Report Post  
Rowan
 
Posts: n/a
Default

As you have stated that the 1.2 comes from another calculation it is likely
that the result of that calculation is actually something like 1.16. Excel is
displaying the number as 1.2 as you have the cell format set to show just one
decimal place. Try increasing the number of decimal places and see if it
makes more sense.

Hope this helps
Rowan

"DeeJay" wrote:

I noticed that Excel 2003 calculates:
7.5*1.2=8.7 when the correct answer is 9.0. It did this as part of a
formula where the 1.2 answer came from calculating another set of numbers.
When I asked Excel to calculate this answer by simply inputting those two
numbers the correct answer of 9.0 came out. Does anyone have an answer as to
why it does that?!



  #6   Report Post  
 
Posts: n/a
Default

DeeJay wrote:
I noticed that Excel 2003 calculates:
7.5*1.2=8.7 when the correct answer is 9.0. It did this as part of a
formula where the 1.2 answer came from calculating another set of numbers.
When I asked Excel to calculate this answer by simply inputting those two
numbers the correct answer of 9.0 came out. Does anyone have an answer as
to why it does that?!


In a word, round-off error. (Okay, that's two or threee words.)

The "1.2" that you see in some cell is not really 1.2.
It is probably close to 1.16. Format that cell with
6 or so decimal places, and you will see what I mean.
And by the way, the "8.7" is probably not 8.7.

If you want "1.2" to actually be 1.2, there are a couple
ways to make that happen. The "best" way is to change
the formula that results in "1.2" to =ROUND(formula,1).

Alternatively, there is a Tools / Options / Calculation
option to cause this for all calculations. But because
the affects the entire spreadsheet, it can have unexpected
consequences.

  #7   Report Post  
DeeJay
 
Posts: n/a
Default



"Anne Troy" wrote:

Hmmm.... 8.7. Well, 7.5+1.2=8.7. Are you sure there's not a plus sign in
there?
*******************
~Anne Troy

www.OfficeArticles.com


"DeeJay" wrote in message
...
I noticed that Excel 2003 calculates:
7.5*1.2=8.7 when the correct answer is 9.0. It did this as part of a
formula where the 1.2 answer came from calculating another set of numbers.
When I asked Excel to calculate this answer by simply inputting those two
numbers the correct answer of 9.0 came out. Does anyone have an answer as

to
why it does that?!



I am sure it doesn't have a plus sign.
  #8   Report Post  
DeeJay
 
Posts: n/a
Default



"Mangus Pyke" wrote:

On Tue, 19 Jul 2005 21:17:01 -0700, DeeJay wrote:
I noticed that Excel 2003 calculates:
7.5*1.2=8.7 when the correct answer is 9.0. It did this as part of a
formula where the 1.2 answer came from calculating another set of numbers.
When I asked Excel to calculate this answer by simply inputting those two
numbers the correct answer of 9.0 came out. Does anyone have an answer as to
why it does that?!


Decimal operations in the number from which one of your final
multipliers are derived?

MP-
--
"Learning is a behavior that results from consequences."
B.F. Skinner
Yes it does.

  #9   Report Post  
DeeJay
 
Posts: n/a
Default



" wrote:

DeeJay wrote:
I noticed that Excel 2003 calculates:
7.5*1.2=8.7 when the correct answer is 9.0. It did this as part of a
formula where the 1.2 answer came from calculating another set of numbers.
When I asked Excel to calculate this answer by simply inputting those two
numbers the correct answer of 9.0 came out. Does anyone have an answer as
to why it does that?!


In a word, round-off error. (Okay, that's two or threee words.)

The "1.2" that you see in some cell is not really 1.2.
It is probably close to 1.16. Format that cell with
6 or so decimal places, and you will see what I mean.
And by the way, the "8.7" is probably not 8.7.

If you want "1.2" to actually be 1.2, there are a couple
ways to make that happen. The "best" way is to change
the formula that results in "1.2" to =ROUND(formula,1).

Alternatively, there is a Tools / Options / Calculation
option to cause this for all calculations. But because
the affects the entire spreadsheet, it can have unexpected
consequences.


Thank you- I will do that and see what happens. Thanks for the answer!
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Ignore error msgs in formula references gharden Excel Discussion (Misc queries) 4 June 17th 05 12:14 AM
Error trapped only while stepping through the code - Not triggered when run Jeff Excel Discussion (Misc queries) 7 March 7th 05 06:29 PM
Error trapped only while stepping through the code - Not triggered when run Jeff Excel Discussion (Misc queries) 0 February 28th 05 06:26 PM
Problem with VBA returning the contents of a long formula. [email protected] Excel Discussion (Misc queries) 2 February 23rd 05 12:14 AM
ERROR Pinto1uk Excel Discussion (Misc queries) 1 February 8th 05 03:15 AM


All times are GMT +1. The time now is 07:40 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"