Help

Re: Set formula result to round to nearest .5 of currency

Solved
Jump to Solution
1500 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Peter_Baumann
4 - Data Explorer
4 - Data Explorer

I’m trying to work out some hire prices using a formula, where the weekly cost of item is used to calculate the daily cost of it.

I have an item that cost me £1000, and I have decided that the weekly hire price is this figure divided by 10, so £100 a week. The daily price is calculated by dividing that by 3, so £33.33. However, I want the spreadsheet to round this up to £33.50. How do I use the ROUND function to do this?

At the moment I have:
Weekly cost = {Purchase Cost}/10
Then, daily cost = {Weekly Cost}/3

For both, I want it to round to the next 50p.

Thanks!

1 Solution

Accepted Solutions
Justin_Barrett
18 - Pluto
18 - Pluto

The CEILING idea will work, though I discovered not long ago that there’s a bug in the operation of CEILING. After reporting this to support, I was told to use the following workaround for now:

CEILING(number/significance)*significance

Tweaking the formulas from @Hairtable, that leads to:

 CEILING(({Weekly Cost}/3) / 0.5) * 0.5
 CEILING(({Purchase Cost}/10) / 0.5) * 0.5

See Solution in Thread

3 Replies 3
Hairtable
6 - Interface Innovator
6 - Interface Innovator

Try this:

CEILING((Weekly Cost/3), 0.5)
CEILING((Purchase Cost/10), 0.5)

LMK how you go!

Justin_Barrett
18 - Pluto
18 - Pluto

The CEILING idea will work, though I discovered not long ago that there’s a bug in the operation of CEILING. After reporting this to support, I was told to use the following workaround for now:

CEILING(number/significance)*significance

Tweaking the formulas from @Hairtable, that leads to:

 CEILING(({Weekly Cost}/3) / 0.5) * 0.5
 CEILING(({Purchase Cost}/10) / 0.5) * 0.5

Thanks, this worked great!