View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Different kind of rounding

or =ROUNDUP(ROUND(x,3),2) ?
--
David Biddulph

"Jerry W. Lewis" wrote in message
...
=IF(ROUND(x,3)=ROUND(x,2),ROUND(x,2),ROUNDUP(x,2))

Jerry

"Sarah_Lund" wrote:

I need help with this one...

If the 3rd digit after the decimal is not a zero, I need to round up the
2nd
digit, otherwise leave the number as is
Examples:
4.240 would be 4.24
4.241 would be 4.25

I'd like to be able to do this in one step/one formula.
Any suggestions??
Thank you,
Sarah