Round a monetary value to nearest even .2 amount

jack109

Board Regular
Joined
May 10, 2020
Messages
50
Office Version
  1. 365
Platform
  1. Windows
Hi

I've tried playing with ROUNDUP and EVEN to try and round a monetary value to nearest even .2 amount but no avail.

For example

£5.23 would become £5.24
£1.09 would become £1.10
£6.46 would remain as £6.46

Is there a solution to this?

Thanks in advance
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Trying to think of a better solution. Till then try this -

Book1
BC
35.235.24
41.091.10
56.466.46
Sheet1
Cell Formulas
RangeFormula
C3:C5C3=IF(ISODD(B3*100),B3+0.01,B3)
 
Upvote 0
Here is another thread on this forum itself -

 
Upvote 0
Based on the forum I quoted above - CEILING seems the short & workable formula

Actually I was trying to remember it but couldn't recall initially.

Book1
BCDE
35.235.245.245.24
41.091.101.101.10
56.466.466.466.46
Sheet1
Cell Formulas
RangeFormula
C3:C5C3=IF(ISODD(B3*100),B3+0.01,B3)
D3:D5D3=FLOOR(B3+0.01, 0.02)
E3:E5E3=CEILING(B3,0.02)
 
Upvote 0
Solution

Forum statistics

Threads
1,215,091
Messages
6,123,062
Members
449,089
Latest member
ikke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top