Forum Discussion
gclarke
Nov 05, 2021Copper Contributor
Need Help with a Nest Formula
I have a formula that will look at the start date of a hire, the starting salary and then increment the salary by a referenced percentage upon the anniversary of start date. However, the formula onl...
Riny_van_Eekelen
Nov 06, 2021Platinum Contributor
gclarke In H13, try this:
=IF($F13<=H$8,$E13*(1+$C$4)^INT(DATEDIF($F13,H$8,"m")/12)/12,0)
Copy down and across. I'm not a big fan of the DATEDIF function, but in this case it works just fine.
- gclarkeNov 06, 2021Copper ContributorRiny Thank as well, I appreciate the assistance