Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need some help with a formula that will round a number to two decimal
places, but the two decimal places must be an even number. For example: $12.115 through $12.134 would be $12.12 $12.135 through $12.154 would be $12.14 Would prefer not to use the ISEVEN formula to avoid add-in problems for different users of my spreadsheet. Thanks for your help! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Subtract .005, divide by 2, round, then double
=round(((a1-.005)/2),2)*2 "needhelp" wrote: I need some help with a formula that will round a number to two decimal places, but the two decimal places must be an even number. For example: $12.115 through $12.134 would be $12.12 $12.135 through $12.154 would be $12.14 Would prefer not to use the ISEVEN formula to avoid add-in problems for different users of my spreadsheet. Thanks for your help! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Brilliant -thanks so much!
"bpeltzer" wrote: Subtract .005, divide by 2, round, then double =round(((a1-.005)/2),2)*2 "needhelp" wrote: I need some help with a formula that will round a number to two decimal places, but the two decimal places must be an even number. For example: $12.115 through $12.134 would be $12.12 $12.135 through $12.154 would be $12.14 Would prefer not to use the ISEVEN formula to avoid add-in problems for different users of my spreadsheet. Thanks for your help! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Tue, 15 May 2007 10:54:01 -0700 from needhelp
: I need some help with a formula that will round a number to two decimal places, but the two decimal places must be an even number. For example: $12.115 through $12.134 would be $12.12 $12.135 through $12.154 would be $12.14 Put =ROUND( , 2) around your calculation. -- Stan Brown, Oak Road Systems, Tompkins County, New York, USA http://OakRoadSystems.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Rounding off decimal places | Excel Discussion (Misc queries) | |||
Subtracting two 2-decimal place numbers gives result 13-decimal places? | Excel Worksheet Functions | |||
Decimal Places - Settings for Auto Rounding Up/Down | Excel Worksheet Functions | |||
FIXED 2 DECIMAL PLACES, MUST ENTER ALL ZEROES AFTER DECIMAL POINT. | Excel Discussion (Misc queries) | |||
Decimal places and rounding up (or down) | New Users to Excel |