S sruarg Jan 13, 2010 #1 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
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
J Jeff Jensen Jan 13, 2010 #3 Next five cents: =ROUNDUP(A1/0.05,0)*0.05 Nearest five cents: =ROUND(A1/0.05,0)*0.05
L Lars-Åke Aspelin Jan 13, 2010 #4 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 Click to expand... Try this formula: =MROUND(A1+0.2499, 0.05) Hope this helps / Lars-Åke
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 Click to expand... Try this formula: =MROUND(A1+0.2499, 0.05) Hope this helps / Lars-Åke
J Jeff Jensen Jan 13, 2010 #5 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
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