How to Calculate Accrued Vacation Time in Excel (with Easy Steps)

In general, every company allows the employees to take a certain amount of leave days with pay, and that is called PTO or Paid Time Off. And if the employees don’t have the given leave days then he/ she can encash the leave and that is called Accrued vacation time. In this article, I will show you how to calculate the accrued vacation time in Excel. Here, I will use an Excel formula to calculate accrued vacation days based on the joining date. You can also download the free spreadsheet and modify it for your use.


What Is Accrued Vacation Time?

Generally, employees get a certain amount of days to leave for vacation, personal reasons,s or sickness. But if the employee hasn’t used the earned leave days then this will be called Accrued Vacation Time. And the employee will earn the amount equivalent to the accrued vacation time at the end of the year. This is also called PTO – Paid Time Off.


How to Calculate Accrued Vacation Time in Excel: Steps-by-Steps

To calculate accrued vacation time in Excel, you should have a ready database of Employees where you will get the date of joining, names, wages, etc. In addition, you should have the employee attendance tracker complete for that year so you can calculate the vacation days taken by the employee. Here, I am showing all the steps to calculate the accrued vacation time in Excel.

How to Calculate Accrued Vacation Time in Excel


Step 1: Create Paid Time Off (PTO) Structure

At first, you have to make a PTO structure for your company as per the years of service given by the employee. As the senior employees will get more leave days than the new joiners.

  • So, create a table containing the permitted paid leave days for employees concerning their years of service.
  • Create one more column that contains the lower of the group range for the years of service. This column will be used for the VLOOKUP formula.

Create Paid Time Off (PTO) Structure


Step 2: Create Employee Database with Joining Dates

Then, you should have a ready database of employee data. Collect the data of employee names, joining dates, and wages. And, make a table with these data in an Excel worksheet.

Create Employee Database with Joining Date


Step 3: Calculate Years of Service

Now, you have to calculate the years of service given by the employee. You can use the DATEDIF function to calculate the years from the joining date till today. For this, paste this link into cell D5:

=DATEDIF(Database!D5,NOW(),"Y")

Formula Explanation

  • Start_date = Database!D5
    This will give the joining date of the respective employee from the Database sheet.
  • End_date = NOW()
    To get the date of the working date, the NOW Function is used here.
  • Unit = “Y”
    It will give years between the two dates.

Calculate Years of Service

  • Now drag the Fill Handle icon to paste the used formula respectively to the other cells of the column or use Excel keyboard shortcuts Ctrl+C and Ctrl+P to copy and paste.

Calculate Years of Service


Step 4: Calculate Allowed Vacation Days

Now, to get the allowed leave days of employees concerning their joining date of them, you have to use the VLOOKUP function in Excel. So, paste this link into the cell E5:

=VLOOKUP(D5,Database!$G$6:$H$9,2)

Formula Explanation

  • Lookup_value = D5
    The function will look for the value in cell D5 in the lookup table.
  • Table_array = Database!$G$6:$H$9
    This is the range of cells which is the lookup table where the function will search for the lookup value.
  • Col_index_num = 2
    It will return the value of column 2 in the lookup table from the row where the lookup value exists.

Calculate Allowed Vacation Days


Step 5: Insert the Number of Vacation Days Taken from Employees’ Attendance Tracker

Now, open the Employee attendance tracker of that year and link the cell containing the total leave days taken with this file in cell F5 or insert the values manually in the vacation taken column.

Insert the Number of Vacation Days Taken from Employees Attendance Tracker


Final Step: Calculate Accrued Vacation Time

Now, calculate the accrued vacation days with this formula:

Accrued Vacation Days = Allowed Vacation Days – Vacation Taken 

Calculate Accrued Vacation

Now, you can calculate the accrual vacation payment to encash the leave days not taken. So, the formula will be:

Accrued Vacation Payment = Accrued Vacation Days x Daily Wages

Calculate Accrued Vacation Time 

Now, you have the accrued vacation days and the payments of the employees of your company.

How to Calculate Accrued Vacation Time in Excel


Calculate Accrued Vacation Time in Excel Excluding Probationary Period

In most companies, the accrued vacation time is calculated excluding the probationary periods. During the probationary period, there is no paid leave facilities. So, during the calculation of accrued vacation, we have to take the passing date of the probationary period as the starting date of service. Here, I am showing you the steps on how you can calculate the accrued vacation time for companies that follow the probationary period policy.

📌 Steps:

  • First, insert a new column to calculate the date of the passing period of the probationary period. And, assign a cell to get input of the months of the probationary period.

  • Then, insert the following formula into cell E5 and drag the fill handle till the last row of the table
=EDATE(D5,$K$5)
The EDATE function gives the date value after adding a given number of months. Here, It is adding 6 months which is the probationary period with the joining date, and gives the passing date.

  • Then, go to the “Accrued Vacation” worksheet and rename column D as “Months of Service“.  Also, add a new column after that named “Years of Service“.
  • Then, insert the following formula into the cell D5:
=IFERROR(DATEDIF(Database!E5,NOW(),"M"),"In Probation")
The IFERROR function returns “In Probation” if the end date in the DATEDIF function is after the present date. And, for these rows, you don’t have to calculate the accrued vacation time.

  • Now, calculate the years of service using the following formula in cell E5, and, drag the fill handle to apply similar formula for other cells also.
=IFERROR(D5/12,"In Probation")

  • After that, insert the following formula to get the allowed accrued vacation time for the employees in cell F5:
=IFERROR(VLOOKUP(E5,Database!$H$6:$I$10,2),0)

  • Calculate the remaining part using the similar steps mentioned in the Final Step of the previous method.

Download Practice Workbook

You can download the practice workbook from here:


Conclusion

In this article, you have found how to calculate accrued vacation time in Excel. Download the free workbook and use it to make an annual vacation accrual spreadsheet template for your company. I hope you found this article helpful. Please, drop comments, suggestions, or queries if you have any in the comment section below.


<< Go Back to Leave Calculation | Formula List | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Osman Goni Ridwan
Osman Goni Ridwan

OSMAN GONI RIDWAN is a marine engineer who loves exploring Excel and VBA programming. Programming, to him, is a time-saving tool for efficiently managing data, files, and internet tasks. He is proficient in Rhino3D, Maxsurf, C++, MS Office, AutoCAD, Excel, and VBA and goes beyond the basics. Armed with a B.Sc in Naval Architecture & Marine Engineering from BUET, OSMAN has transitioned into the role of a content developer. Specializing in creating technical content exclusively centered around Excel... Read Full Bio

2 Comments
  1. I have a question.. How can you figure in a 60 day probationary period? Our employees don’t start accruing time until they’ve completed a 60 day probation.

    Thanks!

    • Reply Avatar photo
      Osman Goni Ridwan Oct 3, 2022 at 8:39 AM

      Hello BRYAN!
      As per your question, I have added a new portion in the article which contains the method how you can calculate the accrued time after the completion of probationary period automatically.

      I hope, your problem will be solved in this way. You can share more problems in an email at [email protected]

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo