• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Which month does breakeven occur?

Using the attached example, I am trying to create an excel formula where from year 0 to year 5 for each line, I want to know what month number does the accumulative dollars hit breakeven?

For example, on line 7, I know breakeven is between month 36 and 48 but I want to know exactly which month number.

Thank you!
 

Attachments

  • Example.xlsx
    9.9 KB · Views: 6
Test in H7:
Code:
=FORECAST.LINEAR(-B7,$C$6:$G$6,LET(s,C7:G7,k,SEQUENCE(,COLUMNS(s)),SUBTOTAL(9,OFFSET(s,,,,k))))
and copy down. It uses linear interpolation but the growth might not be linear, so may not be accurate.
 
Back
Top