我有一份需要标价的产品价格清单。
我试过用常规公式
=A1*10%+A1+5,000 = 36,130 (A1 = 28,300)
如果价格结果是36,130,是否有任何方法可以删除最后的2位数的,并调整价格,如果价格为36,160,它将调整为36,200E 213?
发布于 2020-08-03 08:28:22
使用:
=MROUND(<YourExpression>,100)

发布于 2020-08-03 10:13:13
为了得到一定数量的数字,我通常会这样做(例如2位数字):
multiply by 100
round to the nearest integer
divide by 100 again
(use 1000 for 3 digits, ...)对于四舍五入,可以使用ROUND()工作表函数。
https://stackoverflow.com/questions/63225372
复制相似问题