Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=(G6)-SUM(B6:E6)/G6 ...numbers are 10.29-(7.58)/10.29
Answer is .26 but Excel enters 9.55. If Diffucult1 answers, thank you for your help on the previous forumula. It really worked ... however, I figured out that I need a positve not a negative answer. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The same idea applies; you've got to use parens to get the correct order of
operation: =((G6)-SUM(B6:E6))/G6 will force the subtraction before the division. See the help on 'calculation operators', and check 'the order in which Excel performs operations in formulas.' "Rebecca" wrote: =(G6)-SUM(B6:E6)/G6 ...numbers are 10.29-(7.58)/10.29 Answer is .26 but Excel enters 9.55. If Diffucult1 answers, thank you for your help on the previous forumula. It really worked ... however, I figured out that I need a positve not a negative answer. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=(G6-SUM(B6:E6))/G6
or even =IF(G6="","",(G6-SUM(B6:E6))/G6) so you don't get an error if G6 is empty -- Regards, Peo Sjoblom Northwest Excel Solutions www.nwexcelsolutions.com (remove ^^ from email address) Portland, Oregon "Rebecca" wrote in message ... =(G6)-SUM(B6:E6)/G6 ...numbers are 10.29-(7.58)/10.29 Answer is .26 but Excel enters 9.55. If Diffucult1 answers, thank you for your help on the previous forumula. It really worked ... however, I figured out that I need a positve not a negative answer. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula correct, answer wrong | Excel Discussion (Misc queries) | |||
Match then lookup | Excel Worksheet Functions | |||
Vlookup, What is correct formula for problem below? | Excel Worksheet Functions | |||
How I need correct formula, that no t rounding? | Excel Worksheet Functions | |||
Formula window displays correct answer while cell displays incorre | Excel Worksheet Functions |