Rounddown formula needed

  • Thread starter Thread starter Bradley King
  • Start date Start date
=MROUND(A1,0.5)
--Rounds to the nearest 0.5 up/down ie 1.74=1.5 while 1.75=2.0

=A1-(MOD(A1,0.5))
--Rounds to the lowest 0.5 ie 1.74=1.5 while 1.99=1.5

KLS
 
Back
Top