Thread: Excel functions
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Martin Fishlock Martin Fishlock is offline
external usenet poster
 
Posts: 694
Default Excel functions

=round(d2/2,0)

this will round up. if you need to change it then you can use
roundup(d2/2,0) or rounddown(d2/2,0).

If you want some or logic then it is a little more difficult and one way is
to have a seperate column indicating the last round up or down and you base
it on that.


--
Hope this helps
Martin Fishlock


"Joe" wrote:

how can i d2/2 then round up or round down the results?