历史版本5 :FLOOR-向下取整 返回文档
编辑时间: 内容长度:图片数:目录数: 修改原因:

目录:

1. Extracted data编辑

1)Overview

grammarFLOOR(number)Round the parameter number to the end in the direction of decreasing absolute value.
parameternumberThe value to be rounded.

2)Matters needing attention

  • Support a numeric parameter, more than that is not legal

3)Examples

FormulaResultRemark
FLOOR(-2.5)-2
FLOOR(2.5)2

2. Direct Connect Version编辑

1)Overview

grammarFLOOR(number)Round the parameter number to the end in the direction of decreasing value.
parameternumberThe value to be rounded.

2)Matters needing attention

  • Support a numeric parameter, more than that is not legal

3)Examples

FormulaResultRemark
FLOOR(-2.5)-3
FLOOR(2.5)2