Share via

401k Eligibility Dates

Anonymous
2014-01-16T19:44:04+00:00

I have seen similar posts regarding 401k eligibility dates, but they were not quite what I was looking for.

I have a list of employees' start dates. They become eligible to enroll in the plan on the first day of the month following 180 days of service. But, they can only enroll in the plan on May 1 and November 1.

Example, an employee hired January 20, 2010 would be eligible August 1, 2010 but could not enroll in the plan until November 1, 2010.

How can I create a formula that rounds their eligibility date (date of hire plus 180 days of service) to the nearest upcoming six month period (May 1 or November 1)?

Here is what I have so far, but it has some issues...

=DATE(YEAR(D2),11+6*(MONTH(D2+6)>6)-6*(DAY(D2)=1),1)

Hire date is in column D.

Any help would be appreciated.

Andrew

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2014-01-16T20:20:32+00:00

With your Hire Date in A1, try this formula for the next enrollment date:

=MIN(DATE(YEAR(A1+180)+(DATE(YEAR(A1+180),11,1)<(A1+180)),11,1),

DATE(YEAR(A1+180)+(DATE(YEAR(A1+180),5,1)<(A1+180)),5,1))

But what should happen if someone is hired on 5 May 2014.  180 days later is 1 November 2014.  Can they enroll on that date, or do they have to wait until the next May.  The formula above assumes they won't have to wait.

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2014-01-16T20:30:35+00:00

    That is correct. If they are eligible on November 1, 2014, they can enroll on November 1, 2014.

    The formula works great. Thanks!

    Was this answer helpful?

    0 comments No comments