Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
i would like to round a currency amount to the next $ 0.05 (five cents)
eg 30.63 to be 30.65 or 40.48 to be 40.50 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try using the CEILING Function.
Micky "sruarg" wrote: i would like to round a currency amount to the next $ 0.05 (five cents) eg 30.63 to be 30.65 or 40.48 to be 40.50 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Next five cents:
=ROUNDUP(A1/0.05,0)*0.05 Nearest five cents: =ROUND(A1/0.05,0)*0.05 "sruarg" wrote: i would like to round a currency amount to the next $ 0.05 (five cents) eg 30.63 to be 30.65 or 40.48 to be 40.50 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I forgot something...
Next five cents: =ROUNDUP(A1/0.05,0)*0.05 =CEILING(A1,0.05) Nearest five cents: =ROUND(A1/0.05,0)*0.05 "Jeff Jensen" wrote: Next five cents: =ROUNDUP(A1/0.05,0)*0.05 Nearest five cents: =ROUND(A1/0.05,0)*0.05 "sruarg" wrote: i would like to round a currency amount to the next $ 0.05 (five cents) eg 30.63 to be 30.65 or 40.48 to be 40.50 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Wed, 13 Jan 2010 13:13:01 -0800, sruarg
wrote: i would like to round a currency amount to the next $ 0.05 (five cents) eg 30.63 to be 30.65 or 40.48 to be 40.50 Try this formula: =MROUND(A1+0.2499, 0.05) Hope this helps / Lars-ke |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formatting monetary amounts with currency indicator on extreme left and amount right ? | Excel Discussion (Misc queries) | |||
Rounding dollar amounts up/down when cents aren't part of the fact | Excel Worksheet Functions | |||
Currency Rounding to nearest 5 cents | Excel Discussion (Misc queries) | |||
Formula for rounding a column of currency to a multiple | Excel Worksheet Functions | |||
Rounding currency. | Excel Worksheet Functions |