Round Up the value to lowest in microsoft excel

后端 未结 3 1854
小鲜肉
小鲜肉 2021-01-26 12:34

I am writing a formula in excel in which I am diving 2 numbers and I don\'t want value in decimal.

I tried using ROUND(5/10,0) but it round of 0.5 to 1.

But my

3条回答
  •  萌比男神i
    2021-01-26 13:06

    You can use INT to find the next lower integer.

    • =INT(5/10) gives 0
    • =INT(15/10) gives 1
    • =INT(25/10) gives 2
    • =INT(-1/10) gives -1 (because -1 is the integer which is lower than -0.1)
    • =INT(-15/10) gives -2 (for a similar reason)

提交回复
热议问题