数字 | 公式 | 四舍五入为整数 | 公式 | 四舍五入到小数点后第二位 | 公式 | 保留到第3位(从第三位开始后面直接删除而不四舍五入) |
---|---|---|---|---|---|---|
2.333333 | =round(A2) | !ERROR! C2 -> Formula Error: Wrong number of arguments for ROUND() function: 1 given, 2 expected | =round(A2,2) | 2.33 | =floor(A2*1e3)/1e3 | !ERROR! G2 -> Excel requires 2 arguments for FLOOR |
4.555555 | =round(A3) | !ERROR! C3 -> Formula Error: Wrong number of arguments for ROUND() function: 1 given, 2 expected | =round(A3,2) | 4.56 | =floor(A3*1e3)/1e3 | !ERROR! G3 -> Excel requires 2 arguments for FLOOR |
参考:https://tablepress.org/tablepress-features-formulas/