View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Rick Rothstein Rick Rothstein is offline
external usenet poster
 
Posts: 5,934
Default Different kind of rounding

I am apparently missing something in the OP's question, but I would think
ROUNDUP would work directly. Doesn't...

=ROUNDUP(A20,2)

do the same thing as your formula? If not, what am I overlooking?

--
Rick (MVP - Excel)


"Gary''s Student" wrote in message
...
With a value in A20:

=IF(RIGHT(1000*A20,1)=0,A20,ROUNDUP(A20,2))

--
Gary''s Student - gsnu200821


"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