You are on page 1of 6

Excel Formula

Excel Formula
Rank Formula
=RANK(select average, select all average then
press F4)
Example =RANK(D3,$D$3:$D$6)
Grade Formula
=if(select average>=90,”A”, if(select
average>=80,”B”, if(select average>=70,”C”,
if(select average>=50,”D”,”F”))))
Example =if(D3>=90,”A”, if(D3>=80,”B”,
if(D3>=70,”C”, if(D3>=50,”D”,”F”))))
Excel Formula
Total Formula
=SUM(SELECET ALL MARK OR YOU WANT ADD)
EXAMPLE =SUM(B3:D3)
Average Formula
=Average(select all mark)
Example =average(B3:D3)
Comment Formula
=if(select average>=90,”Excellent”, if(select
average>=80,”Very Good”, if(select average>=70,”Good”,
if(select average>=50,”Poor”,”Fail”))))
Example =if(D3>=90,”Excellent”, if(D3>=80,”Very Good”
if(D3>=70,”Good”, if(D3>=50,”Poor”,”Fail”))))
Excel Formula
Pension Tax Formula
=Select Gross Salary * 7%
Example =D3*7%
Bones based on Criteria example if FEMALE 10% of
Salary other wise 5% of salary
=if(select sex=“Female”,(select salary*10%),(select
salary*5%))
Example=if(C3=“Female”,(D3*10%),(D3*5%))
Excel Formula
Income Tax Formula
=if(select gross salary<=600,0, if(select gross
salary<=1650,(gross salary*10%-60), if(select gross
salary<=3200,(gross salary*15%-142.50), if(select
gross salary<=5250,(gross salary*20%-302.50),
if(select gross salary<=7800,(gross salary*25%-565),
if(select gross salary<=10900,(gross salary*30%-
955),(gross salary*35%-1500)))))))
Example if(D3<=600,0, if(D3<=1650,(D3*10%-60),
if(D3<=3200,(D3*15%-142.50), if(D3<=5250,
(D3*20%-302.50), if(D3<=7800,(D3*25%-565),
if(D3<=10900,(D3*30%-955),(D3*35%-1500)))))))
Excel Formula
Deduction Formula
=Pension Tax + Income Tax
example =F3 + G3
Net Pay
= Gross Salary + Bones –Total Deduction
Example =D3+E3-H3
Count Formula
=countif(select you want count cell, “F”)
Example =countif(C3:C6,”F”)

You might also like