4
我想將值舍入爲最接近的值50. 將值四捨五入爲最接近的50
121 should get rounded to 100
129 should get rounded to 150
178 should get rounded to 200
165 should get rounded to 150
我曾嘗試以下功能...
=FLOOR(C629,50)
=FLOOR((C629+50),50)
=CEILING(C631,50)
但如預期,我仍然沒有得到結果。
= FLOOR(444/50,1)* 50 ###這將輸出400我預計450 – shantanuo 2010-10-09 06:09:42
@shantanuo:固定。 – Ani 2010-10-09 06:11:23
= MROUND(589,50)###就是我在找的東西。謝謝 – shantanuo 2010-10-09 06:12:40