Creating a Dynamic Vesting Calendar

excelgeeks

New Member
Joined
Jun 2, 2023
Messages
3
Office Version
  1. 365
Basically as the title says:
1. Vesting Begins 1/1/22
2. 30% vests on 1-year anniversary
3. 1/48 vest monthly thereafter (total 5 year vesting period)
5. Total of 40,000 options
6. Need to calculate vested options as of 6/19/22
7. Make calculation dynamic so that the Beginning of the vesting period can be changed by the user

Generally speaking, I have something like this - IF(DATE(YEAR(C20)+1,MONTH(C20),DAY(C20))<TODAY(),C19*C21,0) which gives me the 1 year vesting amount, but not 100% sure how to add the monthly vesting thereafter. The above - C20=Vesting date. C19=# of options. C21=1 year vest %.

Thanks in advance!
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Try:

Book1
BC
19# of options40000
20Start Date1/1/2022
211 year %30%
22
23Vested %37%
24Vested Amt14916.67
Sheet5
Cell Formulas
RangeFormula
C23C23=IF(DATEDIF(C20,TODAY(),"y")<1,0,MIN(1,C21+(1-C21)*(DATEDIF(C20,TODAY(),"m")-12)/48))
C24C24=C23*C19
 
Upvote 0
Solution
thank you, that worked! Wondering if you can help me with a related question that I'm using the formula provided as a follow on to calculate Common Distribution. The deal value is $20m with Debt of $7m and Cash of $3m. Given this, the equity to be distributed would be $16m, right?
 
Upvote 0
I'm glad the formula worked for you.

As far as the follow-up question, my financial math is far in the past. I can't help you there.
 
Upvote 0

Forum statistics

Threads
1,215,105
Messages
6,123,114
Members
449,096
Latest member
provoking

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