Cumulative Breakeven points for revenue

tensaix

New Member
Joined
Feb 28, 2011
Messages
2
I have a spreadsheet with revenue information, and I am trying to calculate the cumulative break even point.

HTML:
Column A      Column B
FY11           -373
FY12           -583
FY13            257
FY14            150
FY15            700

In column B, I have varying figures for each Fiscal Year, and FY11 is (-373) and FY12 is (-583). Together they are (-956). Although the first year the revenue goes positive is in FY13, which is 257, I am looking to build a formula that will say the cumulative break even point is in FY15 or year 4, since 257+150+700 is greater than FY11 and FY12. Is this possible?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
To return FY15, try...

=INDEX(A2:A6,MATCH(TRUE,SUBTOTAL(9,OFFSET(B2:B6,,,ROW(B2:B6)-ROW(B2)+1))>=0,0))

To return 4, try...

=MATCH(TRUE,SUBTOTAL(9,OFFSET(B2:B6,,,ROW(B2:B6)-ROW(B2)+1))>=0,0)

Note that both these formulas need to be confirmed with CONTROL+SHIFT+ENTER, not just ENTER.
 
Upvote 0

Forum statistics

Threads
1,224,590
Messages
6,179,758
Members
452,940
Latest member
rootytrip

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