Excel formula help

lusov

New Member
Joined
May 17, 2017
Messages
5
Hi,

I have a list of 70 clients with contract amounts and start dates on one tab. I need to make projection for 12 months in a way that for each customer no more than 15,000 monthly revenues is included in the forecast. For instance if the contract amount is 42,000 USD then I should account for 15,000 first month, 15,000 second and 12, 000 last month. Can you, please, help me with the formula?
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Is something like this table what you are after? If so, enter the following formula in B1,

Code:
=IF(A1>15000,15000,A1)

and this one in C1,

Code:
=IF($A1-SUM($B1:B1)>15000,15000,$A1-SUM($B1:B1))

Then, copy C1 and paste it down the column.

Now, copy B1 to the end of the column and paste down the row.

9876515000150001500015000150001500087650
321041500015000210400000
66592150001500015000150006592000
15000150000000000
15001150001000000
14999149990000000

<tbody>
</tbody>
 
Upvote 0
Is something like this table what you are after? If so, enter the following formula in B1,

Code:
=IF(A1>15000,15000,A1)

and this one in C1,

Code:
=IF($A1-SUM($B1:B1)>15000,15000,$A1-SUM($B1:B1))

Then, copy C1 and paste it down the column.

Now, copy B1 to the end of the column and paste down the row.

9876515000150001500015000150001500087650
321041500015000210400000
66592150001500015000150006592000
15000150000000000
15001150001000000
14999149990000000

<tbody>
</tbody>


Hi Thanks!

I have 70 clients and would prefer not having a table. Is it possible to do this through one formula?
 
Upvote 0

Forum statistics

Threads
1,213,560
Messages
6,114,309
Members
448,564
Latest member
ED38

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