Employee Vacation Accrual Formulas

CasandraBeaulieu

New Member
Joined
Aug 6, 2020
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I have been tasked with developing a spreadsheet to track employee vacation accrual. The Company updates the vacation accrual the last day of every month.

Our hourly vacation policy is:
0-2 years = 6 days
3-5 years = 10 days
6 years = 15 days

Our salary vacation policy is:
0-5 Years =15 days
6 Years = 20 days

So far I have the following information set up:
A2 Name
B2 Hire Date
C2 TODAY ()
D2 =(C2-B2)/7 (calculates the number of weeks since the employee was hired)
E2 I'd like to reflect the vacation time the employee has taken.
F2 I would like this to show the number of hours each employee has available to date.

I would greatly appreciate any help.

Thanks
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
T202008a.xlsm
ABCDEF
1NameHireCalc DateYearsTypeEarned
2A1-Jan-106-Aug-2010S20
3B1-Jan-196-Aug-201Hr6
4
4b
Cell Formulas
RangeFormula
D2:D3D2=DATEDIF(B2,C2,"y")
F2:F3F2=IF(E2="Hr",LOOKUP(D2,{0,6;3,10;6,15}),IF(E2="S",LOOKUP(D2,{0,15;6,20}),""))
 
Upvote 0

Forum statistics

Threads
1,214,566
Messages
6,120,257
Members
448,952
Latest member
kjurney

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top