Formula for Equity Vesting - After Year one 25% vested followed by quarteryly vesting.

avgsuperhero

New Member
Joined
Oct 1, 2014
Messages
4
I'm attempting to write a formula to calculate the amount of vested equity based on award date and current date.

If award date is 1/1/2013 for 50,000 units than on 1/1/2014 25% have vested. The remaining 75% will vest on a quarterly bases. I'd like it updated in real time based on today's date.

I'm not even sure where to start with this one, right now I'm entering everything by hand doing the calculations monthly, but there is too much room for human error.

Thanks!
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
This formula returns the percent vested as of the current date:
Code:
=MIN(DATEDIF(AwardDate,Today(),"y")/4,1)/CODE]

Is that something you can work with?
 
Upvote 0
Excel Workbook
ABCDEF
1BalanceVesting
2Award Date01/01/1350,000.0050,000.00Initially25%
3Vested01/01/1412,500.0037,500.00Quarterly5%
431/03/142,500.0035,000.00
530/06/142,500.0032,500.00
630/09/142,500.0030,000.00
731/12/14
8
9Can you supply an example of your calculations?
10How is the amount vested calculated?
11The above is just a guess at your situation.
12
1a
Excel 2003
Cell Formulas
RangeFormula
D2=+C2
D3=D2-C3
D4=D3-C4
D5=D4-C5
D6=D5-C6
C3=IF(AND($B$2=41275,B3)),F2*$C$2,"")
C4=IF(AND($B$2=41275,B4)),$F$3*$C$2,"")
C5=IF(AND($B$2=41275,B5)),$F$3*$C$2,"")
C6=IF(AND($B$2=41275,B6)),$F$3*$C$2,"")
C7=IF(AND($B$2=41275,B7)),$F$3*$C$2,"")
 
Upvote 0
That makes sense, but I feel like it will create too many line items. However, that may be the only way to do it. I was hoping we could potentially have the formula calculated in a single cell in column G? Heres what it currently looks like, apologies for being a novice.

ABCDEFGHI
1NameBenchmark Class B UnitsTotal Class B UnitsClass B Proportionate PercentageDate of GrantVestedTotal VestedFormula
2John Smith$3.0007,500.0025,000.00N/A10/2/131,875.003,750.001 year 25%, 3 years quarterly
3John Smith$3.0007,500.00 10/2/131,875.00 1 year 25%, 3 years quarterly
4John Smith$4.50010,000.00 1/17/140.00 1 year 25%, 3 years quarterly

<colgroup><col><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Last edited:
Upvote 0
Excel Workbook
ABCDEFGHIJKL
1NameBenchmarkClass B UnitsTotal Class B UnitsClass B Proportionate PercentageDate of GrantStartCalcQuarters to dateVested 1 yearVested QuarterlyTotal Vested to Date
2DateDate25%6.25%
3John Smith$3.007,500.0025,000.00N/A2-Oct-131-Jan-132-Oct-1471,875.001,406.253,281.25
4John Smith$3.007,500.002-Oct-131,875.00
5John Smith$4.5010,000.0017-Jan-140
6
1aa
Excel 2003
Cell Formulas
RangeFormula
K2=(1-0.25)/(3*4)
K3=IF(I3>4,(I3-4)*$K$2*C3,"")
I3=INT((H3-G3)/90)
J3=(I3>=4)*(C3*$J$2)
L3=+K3+J3



Please provide information on relevant dates and details on how you calculate the amounts.
N.B. I inserted 2 columns for the dates.

hth Dave
 
Last edited:
Upvote 0
Worksheet Formulas
CellFormula
K2=(1-0.25)/(3*4)
I3=INT((H3-G3)/90)
J3=(I3>=4)*(C3*$J$2)
K3=IF(I3>4,(I3-4)*$K$2*C3,"")
L3=+K3+J3

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

So that makes total sense and was super helpful! My only concern is in I3 when we divide by 90. Is this offset by rounding down or does the formula recognize 90 days as a quarter of a year?
 
Upvote 0
I3 =INT((H3-G3)/90)

Edit the 90 to 91

The INT part effectively rounds to a whole number and any decimal part is excluded.


91 * 4 = 364 which is nearly an entire year.

If you are calculating on a date that is a quarter end date, ensure the the number of quarters is correct.
 
Last edited:
Upvote 0
consider

31-Dec-13 30-Jun-14 2

=INT((B3-A3+(B3=EOMONTH(B3,0))*2)/91)

Try Excel's Formula Evaluate to step through the formula.
 
Upvote 0

Forum statistics

Threads
1,215,487
Messages
6,125,086
Members
449,206
Latest member
ralemanygarcia

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