Round Up the value to lowest in microsoft excel

放肆的年华 提交于 2019-12-02 10:26:06
shove

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.

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)

Use INT() or FLOOR() function to do that...

=INT(A1)

or

=FLOOR(A1,1)

If you want to use directly, then use as =INT(5/10) or =INT(15/10) ...etc. In case of =Floor() function use as =FLOOR(5/10,1) or =FLOOR(15/10,1) ... etc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!