Round(Value,Precision)
Round
参数说明: Value —— 数值表达式 Precision —— 精确度,指定的小数位数,小于等于0的值都取到整数位
Value
Precision
Round(1.237,2) 将返回数值 1.24
Round(1.237,2)
1.237
2
Round(-5.7744,3) 将返回数值 -5.774
Round(-5.7744,3)
5.7744
3