2012-09-17 60 views
1

我需要爲了某些協助follws需要在使用Excel

  1. 如果00到12去解決它薪金目的 小數點後兩位數字的薪水準備一些公式援助,那麼00
  2. 如果13至37,然後向上舍入到25
  3. 如果38至62,然後向上舍入到50
  4. 如果63至87,然後向上舍入到75
  5. 如果88或更多,則舍入到100

例子:

By Apllying the above principles 

    if the amount is 79.109 have to change it to 79.100 
    if the amount is 132.528 have to change it to 132.525 
    if the amount is 258.739 have to change it to 258.750 
    if the amount is 452.264 have to change it to 452.275 

並且還如果該量124.998必須把它更改爲125.000

+0

您需要提供更多的信息。例如,你所有的數字都是3位小數。 – brettdj

回答

2

隨着A1數據嘗試在該式中B1根據需要舍

=ROUND(A1*4,1)/4

編輯:MROUND是另一種可能性,即

=MROUND(A1,0.025)

....但MROUND僅在Excel 2007中的本地Excel函數及更高版本(分析工具庫在早期版本)

+0

+1非常漂亮的巴里。 – brettdj