Using hire date to convert either a year later or the first of the year based on the hire date

BKrantz

New Member
Joined
Sep 24, 2018
Messages
5
Hello,
I am trying to do a vacation accrual worksheet base off of a start date, or the first of the year. So I need the cell to populate either the hire date or 1/1/18 if they have already been employed for one year.

So in Cell B5 I have the hire date in cell C5 I have the termination date (or a date in the far future) in cell D5 I need it to populate either the hire date or 1/1/18, but if they are terminated I need it to post the termination date.

Can anyone help with this formula?:confused::confused:
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Welcome to the Board!

Maybe something like this:
Code:
=IF(C5,C5,MAX(B5,DATE(2018,1,1)))
 
Upvote 0
Hi,

If I understand correctly, does this do what I think you described:


Book1
BCD
4Hire DateTermination DateResult
57/4/201612/25/20191/1/2018
610/15/201712/25/201810/15/2017
72/10/20179/21/20189/21/2018
Sheet285
Cell Formulas
RangeFormula
D5=IF(C5<=TODAY(),C5,IF(EDATE(B5,12)>=TODAY(),B5,DATE(YEAR(TODAY()),1,1)))
 
Upvote 0
The way that I read it was like this:
Put in cell D5:
- The termination date (C5), if one exists
- Otherwise, the later of the Hire Date and 1/1/2018
 
Upvote 0
Both of these do work. Maybe I just need to elaborate on what exactly I am trying to accomplish.
I have my employees and they earn 120 hours of vacation per year with 1/1 date/renewal for all employees. So if someone starts mid year I need to pro rate the total, and if someone has been here for more than a year I need 1/1 to be their date. Our vacation rolls over fully every year if un-used. Also if they are terminated I need some how this to also stop accruing because I will populate the full balance in used as we will pay out all un-used time. (((( this sheet flows into our budget sheet to show liability per employee))))

My thoughts were as follows:
Headers:
A1 Name
B1 Hire Date
C1 Termination Date
D1 Current Year Accrual date
E1 Carry Over Previous Years
F1 Vacation Used
G1 Vacation Balance (As this will be the total I used in the budget sheet for liability)

Hope this somewhat makes sense
 
Upvote 0
@Joe4, OP's description is unclear to me, my suggested solution is just my guess at what OP wanted...
 
Upvote 0
I'm also completely open to other suggestion how to accomplish this.... Thanks in advance for the help!!!
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,433
Members
448,897
Latest member
ksjohnson1970

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