G
Guest
I am trying to create a formula that rounds to the nearest 0.25p. Eg ((j10*1.04)) £2.18 increased by 4% = £2.27 want to round up to £2.50. Help pleas
((j10*1.04)) £2.18 increased by 4% = £2.27 want to round up to £2.50. Helpmarie said:I am trying to create a formula that rounds to the nearest 0.25p. Eg
Bernie said:Marie,
Once you say "round to the nearest", which Frank's solution does, and
once you say "Round up". For that you could use
=ROUNDUP(J10*4,0)/4
I use *4 instead of /.25 just to be different.... ;-)