Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to know how to rewrite the following formula to round to 2 decimals,
not just display two decimals. Round down, round up I am not sure which. =IF(B10="","",(B10*$A$8%)) this results in a number like this: 26.2529 The problem is that this is used in another formula and because the first amount wan't rounded it throws off the calculation. Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe this is what you want:
=IF(B10="","",(ROUND(B10*$A$8%,2))) HTH, Paul "Novice2000" wrote in message ... I need to know how to rewrite the following formula to round to 2 decimals, not just display two decimals. Round down, round up I am not sure which. =IF(B10="","",(B10*$A$8%)) this results in a number like this: 26.2529 The problem is that this is used in another formula and because the first amount wan't rounded it throws off the calculation. Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Perfect. Thanks very much.
"PCLIVE" wrote: Maybe this is what you want: =IF(B10="","",(ROUND(B10*$A$8%,2))) HTH, Paul "Novice2000" wrote in message ... I need to know how to rewrite the following formula to round to 2 decimals, not just display two decimals. Round down, round up I am not sure which. =IF(B10="","",(B10*$A$8%)) this results in a number like this: 26.2529 The problem is that this is used in another formula and because the first amount wan't rounded it throws off the calculation. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Round up down or anywhere | Excel Discussion (Misc queries) | |||
Round Up/Down ? | Excel Worksheet Functions | |||
Round near to Zero | Excel Worksheet Functions | |||
Round hh:mm:ss to whole hh:mm | Excel Worksheet Functions | |||
How do I ROUND() round off decimals of a column dataset? | Excel Worksheet Functions |