如何在Excel中四舍五入

Nam*_* VU 0 worksheet-function microsoft-excel

假设我们有一个数字数组

 $9,333.00 
 $5,733.00 
 $21,333.00 
 $21,833.00 
Run Code Online (Sandbox Code Playgroud)

我们怎样才能使它们四舍五入

 $9,500.00 
 $6,000.00 
 $25,500.00 
 $22,000.00 
Run Code Online (Sandbox Code Playgroud)

jdh*_*jdh 6

Excel 的天花板函数可以这样做:如果 9333 在 A1 中,则公式=ceiling(a1,500)将返回 9500。