Round Up the value to lowest in microsoft excel

后端 未结 3 1832
小鲜肉
小鲜肉 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条回答
  •  北荒
    北荒 (楼主)
    2021-01-26 12:56

    You can use the function ROUNDDOWN.

    Example:

    ROUNDDOWN(15/10,0)

    The second parameter stands for the precision. Zero means that you won't have any decimal numbers.

提交回复
热议问题