RUMUS MS EXCEL TARIF PASAL 17 WP OP/PPH 21kopikan rumus ini pada cell tempat dimana anda akan menghitung PPh 21 (sel x19 adalah nilai PKP)
=IF(X19<=25000000,X19*5%,IF(X19<=50000000,25000000*5%+(X19-25000000)*10%,IF(X19<=100000000,25000000*5%+(50000000-25000000)*10%+(X19-50000000)*15%,IF(X19<=200000000,25000000*5%+(50000000-25000000)*10%+(100000000-50000000)*15%+(X19-100000000)*25%,25000000*5%+(50000000-25000000)*10%+(100000000-50000000)*15%+(200000000-100000000)*25%+(X19-200000000)*35%))))
Rumus tarif progresif di Module
apabila anda lebih ingin hasil yang lebih pro, buka vb editor excel (tekan Alt+F11) dan insert new module, dan kopikan rumus ini di script editornya.lalu simpan dan isikan rumus "=progresif(PKP) "(cell dimana nilai PKP ada) lalu enter.
Function progresif(pkp)
Select Case pkp
Case Is <= 25000000
progresif = pkp * (5 / 100)
Case Is <= 50000000
progresif = 1250000 + ((pkp - 25000000) * 10 / 100)
Case Is <= 100000000
progresif = 3750000 + ((pkp - 50000000) * 15 / 100)
Case Is <= 200000000
progresif = 11250000 + ((pkp - 100000000) * 25 / 100)
Case Is > 200000000
progresif = 36250000 + ((pkp - 200000000) * 35 / 100)
End Select
End Function
Langganan:
Posting Komentar (Atom)
0 Comment:
Posting Komentar