How to determine in which month will occur a contract drop

Daniel_Fdrvc

New Member
Joined
Jan 17, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hello all,

i'm struggling with one task. The point is, that i have simple calculation of sales: we sell the same amount of contracts every month, which increases the overall portfolio. But now I need to insert a flag that will tell me in which month the contract drop will occur. We have two scenarios: 1. if drops 1 of 10 contracts (10% or in other words, every tenth contract) and 2. if drops 3 of 10 contracts (30%). I have created some calculations that shows me the FIRST DROP of contract, f.e. if we sell 1 contract per month and i choose 10% drop ratio, then the first drop will occur in tenth month or if we sell 2 contracts per month and drop ratio will be 10% then the first drop will ocur in fitfh month. Now i have problem how to show second, third, forth etc. drop flags on the same "timeline" alongside the first drop flag. This needs to be tied to every 10 contracts sold somehow, but I can't figure out how. Drop flag should appear dynamically based on contracts per month and choosen drop ratio. Maybe some one could help me. When i'll know in which month will occur a drop, then i will know in which month to make payment substraction.

sales and drops.xlsx
ABCDEFGHIJKLMNOPQRSTU
1Drop ratio10%Choose 10% or 30% drop ratio
2
3Contracts per month1Insert contracts per month
4Payment30Insert payment amount
5
6
7Substracted value         30          
8Droped contracts         1          
9First drop flag         drop          
10Month1234567891011121314151617181920
11Contracts per month11111111111111111111
12Total contracts1234567891011121314151617181920
Sales
Cell Formulas
RangeFormula
B7:U7B7=IF(B9="drop",B8*$B$4,"")
B8:U8B8=IF(B9="drop",ROUNDDOWN(B12*$B$1,0),"")
B9B9=IF(B12>=10,"drop","")
C9:U9C9=IF(C12>=10,IF(B12>=10,"","drop"),"")
B11:U11B11=$B$3
B12B12=B11
C12:U12C12=B12+C11
Cells with Conditional Formatting
CellConditionCell FormatStop If True
B9:U9Cell Valuecontains "drop"textNO
Cells with Data Validation
CellAllowCriteria
B1List=Param!$A$2:$A$3
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.

Forum statistics

Threads
1,215,326
Messages
6,124,263
Members
449,149
Latest member
mwdbActuary

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