Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If I have two cells containing formulas that are formatted to round to one
decimal place, how can I add only the rounded results of the two cells? eg: Displayed as: 529.9 + 469.7 = 999.5 Acctual: 529.8591944 + 469.6841614 = 999.5433558 Where I want to display: 529.9 + 469.7 = 999.6 Any thoughts or Idea's ?? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You need a helper cell with the formula
=ROUNDUP(D13,2) where D13 is 999.5 Nick" wrote: If I have two cells containing formulas that are formatted to round to one decimal place, how can I add only the rounded results of the two cells? eg: Displayed as: 529.9 + 469.7 = 999.5 Acctual: 529.8591944 + 469.6841614 = 999.5433558 Where I want to display: 529.9 + 469.7 = 999.6 Any thoughts or Idea's ?? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use =SUM(ROUND(A1:B1,1)) but commit it with CTRL+SHIFT+ENTER rather than
just ENTER This is an array formula; Excel will enclose it in braces {} OR use =SUMPRODUCT(ROUND(A1:B1,1)) with normal ENTER to complete best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "Nick" wrote in message ... If I have two cells containing formulas that are formatted to round to one decimal place, how can I add only the rounded results of the two cells? eg: Displayed as: 529.9 + 469.7 = 999.5 Acctual: 529.8591944 + 469.6841614 = 999.5433558 Where I want to display: 529.9 + 469.7 = 999.6 Any thoughts or Idea's ?? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=ROUND(A1,1)+ROUND(A2,1)
"Nick" wrote: If I have two cells containing formulas that are formatted to round to one decimal place, how can I add only the rounded results of the two cells? eg: Displayed as: 529.9 + 469.7 = 999.5 Acctual: 529.8591944 + 469.6841614 = 999.5433558 Where I want to display: 529.9 + 469.7 = 999.6 Any thoughts or Idea's ?? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
A much better answer unless the OP want to expand to add 5 for so values
best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "Teethless mama" wrote in message ... =ROUND(A1,1)+ROUND(A2,1) "Nick" wrote: If I have two cells containing formulas that are formatted to round to one decimal place, how can I add only the rounded results of the two cells? eg: Displayed as: 529.9 + 469.7 = 999.5 Acctual: 529.8591944 + 469.6841614 = 999.5433558 Where I want to display: 529.9 + 469.7 = 999.6 Any thoughts or Idea's ?? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hello nick,
click toolsoptionscheck precision as displayed the sum value will be directly based on what u want to see. regards -- ***** birds of the same feather flock together.. "Nick" wrote: If I have two cells containing formulas that are formatted to round to one decimal place, how can I add only the rounded results of the two cells? eg: Displayed as: 529.9 + 469.7 = 999.5 Acctual: 529.8591944 + 469.6841614 = 999.5433558 Where I want to display: 529.9 + 469.7 = 999.6 Any thoughts or Idea's ?? |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
" click toolsoptionsCalculation tabcheck precision as displayed"
-- ***** birds of the same feather flock together.. "driller" wrote: hello nick, click toolsoptionscheck precision as displayed the sum value will be directly based on what u want to see. regards -- ***** birds of the same feather flock together.. "Nick" wrote: If I have two cells containing formulas that are formatted to round to one decimal place, how can I add only the rounded results of the two cells? eg: Displayed as: 529.9 + 469.7 = 999.5 Acctual: 529.8591944 + 469.6841614 = 999.5433558 Where I want to display: 529.9 + 469.7 = 999.6 Any thoughts or Idea's ?? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Calculating only non-empty cells... | Excel Worksheet Functions | |||
Rounding formula won't copy to other cells in column - why? | Excel Discussion (Misc queries) | |||
Computations involving text cells are not working?? | Excel Worksheet Functions | |||
Help adding text values | Excel Worksheet Functions | |||
Convert data type of cells to Text,Number,Date and Time | Excel Worksheet Functions |