View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Coderre Ron Coderre is offline
external usenet poster
 
Posts: 2,118
Default How do I get formula result of 3.56 to round up to 4 automatic?

Try this:

This formula uses 5/4 rounding (up/down), respectively
=ROUND(K9*7/250,0)

Or
If you always want to round UP to the next highest integer
=CEILING(K9*7/250,1)

Does that help or do you need something else?
***********
Regards,
Ron

XL2002, WinXP


"Sharon D" wrote:

If my formula is K9*7/250=3.56, how do I get the result of 3.56 to round up
automatically to 4.0????