Excel round 0.34 to 0.35

2

Let say A1's value is 0.34

If I use =ROUND(A1,2) formula in excel, this will produce 0.34 too.

I know this is the right one.

What I want to do is to change 0.34 value to 0.35

Sabrina

Posted 2019-06-15T08:07:50.690

Reputation: 1 703

Answers

4

Microsoft Excel provides three functions for round numbers to the nearest multiple of 0.5:

  • To round a number down to nearest 0.5, use the FLOOR function, for example
    =FLOOR(A2, 0.5).
  • To round a number up to nearest 0.5, use the CEILING function, for example
    =CEILING(A2, 0.5).
  • To round a number up or down to nearest 0.5, use the MROUND function, for example =MROUND(A2, 0.5). Rounding up or down depends on the remainder from dividing the number by multiple - if the remainder is equal to or greater than half the value of multiple, the number is rounded upward, otherwise downward.

enter image description here

source

harrymc

Posted 2019-06-15T08:07:50.690

Reputation: 306 093

interesting. Seems Mround only works for positive values. – Forward Ed – 2019-06-15T15:04:16.313

1If negatives involved, try instead =MROUND($A3, SIGN($A3) * 0.5) – BowlOfRed – 2019-06-15T16:54:59.630

4

Use =ROUND(A1*2,1)/2 or =MROUND(A1,.05). This lets you round in .05 increments.

Duke Nukem

Posted 2019-06-15T08:07:50.690

Reputation: 865

Thanks but didn't work. I'm still getting 0.34 – Sabrina – 2019-06-15T08:21:16.023