1

次のように、給与目的の小数点以下 2 桁を計算するには、いくつかの支援が必要です。

  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 に変更する必要があります。

4

1 に答える 1

2

With data in A1 try this formula in B1 to round as required

=ROUND(A1*4,1)/4

Edit: MROUND is another possibility, i.e.

=MROUND(A1,0.025)

....but MROUND is only a native excel function in Excel 2007 and later (in Analysis ToolPak in earlier versions)

于 2012-09-17T13:58:53.693 に答える