Jump to content

Recommended Posts

Posted

Hello,

I need to audit our safe harbor match and need assistance with creating an Excel formula. Our match is 100% match on first 3% of deferred salary; then 50% match on next 2% of deferred salary. I currently have this formula =(MIN(D3,3%)*C3)+IF(D3>3%,MIN(D3-3%,2%)*0.5*C3), but it does not factor in if an EE defers 5% or more. 

100% X 3% = 3%
50% X 2% = 1%
--------------------
Total Match = 4% of employees deferring 5% or more.

If employees are deferring 4%, the match would be:

100% X 3% = 3%

50% X 1% = 0.50%
------------------------
Total Match = 3.50 %

If the employees deferral is 3% or less, the employer match would be the same percent as the employee deferral, since it is matched at 100% up to 3%.

For example, ee match =1%, ER Match = 1%

Please help! 

Thank you!

 

Posted

Compensation is in B2, deferral amount is in C2

Put the deferral rate in D2: =ROUND(C2/B2,4)

The calculated match rate in E2: =IF(D2<.03,D2,IF(D2>.05,.04,.03+.5*(D2-.03)))

The match in dollars in F2: =ROUND(B2*E2,2)

Free advice is worth what you paid for it. Do not rely on the information provided in this post for any purpose, including (but not limited to): tax planning, compliance with ERISA or the IRC, investing or other forms of fortune-telling, bird identification, relationship advice, or spiritual guidance.

Corey B. Zeller, MSEA, CPC, QPA, QKA
Preferred Pension Planning Corp.
corey@pppc.co

Posted

no ifs needs:

let A1 = pay, let B1 = deferrals

match = min(A1*.025, B1*.5) + min(A1*.015, B1*.5)

use a round function on it, but that's messier to type out here.

You essentially have 2 matches layered on top of each other.  50 percent on the first 5, plus 50 percent on the first 3.

Posted
1 hour ago, Bri said:

no ifs needs:

let A1 = pay, let B1 = deferrals

match = min(A1*.025, B1*.5) + min(A1*.015, B1*.5)

use a round function on it, but that's messier to type out here.

You essentially have 2 matches layered on top of each other.  50 percent on the first 5, plus 50 percent on the first 3.

That's a fascinating way to look at it.

William C. Presson, ERPA, QPA, QKA
bill.presson@gmail.com
C 205.994.4070

 

Posted

I shook my head at how easy it was when I figured it out that way.  (I had the uglier formulas written down somewhere for years, too.)

And it can do a QACA, too: 

match = min(A1 * .005, B1 * .5) + min(A1 * .03, B1 * .5)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

Terms of Use