Ramp up formula with variable column start

akatsuki

New Member
Joined
Jun 19, 2012
Messages
20
Office Version
  1. 2019
Platform
  1. MacOS
I am building an implementation model and I have most of it done, the revenue table looks like this:

REVENUE TABLE
OpportunityStartAprMayJunJulAug
Opp 1May010,00010,00010,00010,000
Opp 2Apr5,0005,0005,0005,0005,000

Basically the table will show the calculated run rate based on the start date.

But, what I want to do on top of this is add a ramp.

RAMP TABLE
1st month2nd month3rd month4th month5th month
25%50%75%100%100%

So the table should look like this:

REVENUE TABLE WITH RAMP APPLIES
OpportunityStartAprMayJunJulAug
Opp 1May02,500
(10,000 x 25%)
5,000
(10,000 x 50%)
7,500
(10,000x75%)
10,000
(10,000 x100%)
Opp 2Apr1,250
(5,000 x 25%)
2,500
(5,000 x 50%)
3,750
(5,000 x 75%)
5,000
(5,000 x 100%)
5,000
(5,000 x 100%

So what I am trying to do is have a draggable formula but it needs to apply the 25% of the ramp table to the start date even though that column varies.
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Which XL version are you using?

Would you ever have a 0 in the middle?
Book1
ABCDEFG
1OpportunityStartAprMayJunJulAug
2Opp 1May010,000010,00010,000
3Opp 2Apr5,0005,0005,0005,0005,000
Sheet2
 
Last edited:
Upvote 0
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0
Which XL version are you using?

Would you ever have a 0 in the middle?
Book1
ABCDEFG
1OpportunityStartAprMayJunJulAug
2Opp 1May010,000010,00010,000
3Opp 2Apr5,0005,0005,0005,0005,000
Sheet2
Yes, we can have account churn or interruptions that drop it to zero.

Since I have a column identifying the start date, that part is easy. The part that I find hard is how to have the formula start at the first part of the ramp no matter which column has the start date.
 
Upvote 0
OK, I solved it with the use of an offset

=OFFSET(Ramp Table 25% cell,0,(MONTH(Revenue table month)-MONTH(Revenue Table start column))
 
Upvote 0
Solution

Forum statistics

Threads
1,215,152
Messages
6,123,323
Members
449,094
Latest member
Chestertim

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