Unoffical empeg BBS

Quick Links: Empeg FAQ | RioCar.Org | Hijack | BigDisk Builder | jEmplode | emphatic
Repairs: Repairs

Topic Options
#368269 - 01/02/2017 03:17 Spreadsheet Formula
Dignan
carpal tunnel

Registered: 08/03/2000
Posts: 12318
Loc: Sterling, VA
I'm working on a spreadsheet that I'll send to customers who are interested in switching to Tivo from their current crap cable boxes. Much of the dollar amounts are known, like the current cost of a Tivo Bolt, Tivo Mini, yearly Tivo subscription, and even the monthly cost of a cable card.

What I don't know is how much the customer is currently spending for their cable boxes, and how many they have. I've made a spreadsheet that has only two boxes for the customers to enter that information. It then decides how many Tivo Minis they'll need, and gives them a total for the initial cost as well as the fixed yearly cost of Tivo Service and a CableCard (currently $210 on Fios, for example).

The formula I'm trying to create is sort of a "break even" point formula. I want to see how long (in months) it will take for the customer to start saving money on this investment. I need to factor in the initial investment plus the ongoing costs.

Does anyone know how I make a formula that can do this?
_________________________
Matt

Top
#368270 - 01/02/2017 12:39 Re: Spreadsheet Formula [Re: Dignan]
Tim
veteran

Registered: 25/04/2000
Posts: 1522
Loc: Arizona
Without seeing the spreadsheet, I can't tell you the exact formula to use.

However, under 'Data' there is a 'What-If Analysis' menu. Selecting 'Goal Seek' lets to choose which cell is the target cell, what the value you want of that cell to be, and which cell to change to reach that goal.

So by designing the sheet to figure out the list of initial costs and monthly costs, then have the monthly costs multiplied by a 'month' cell, you can set the spreadsheet up in such a way that Goal Seek will change the number of months until the difference in price is $0.

Once you get that part working, you can record the actions as a macro and have a command button to run it so the client doesn't have to do any manual operations at all.

Edit: See my attached example. I have 4 columns, one 'Recurring Costs' and one 'Non-Recurring' for both the current and proposed setups. Plug the costs in. Sum the columns. Subtract the proposed non-recurring from the current non-recurring to create the non-recurring difference. Subtract the proposed recurring from the current recurring to create the monthly difference. Create a cell for the number of months required to recover costs and put a fake value in there. Create a cell for difference in price using the formula 'Non-Recurring Difference + (months * Monthly Difference)'.

To do the optimization go Data -> What-If Analysis -> Goal Seek and the Set cell is the Difference in price (B14), To value is 0, By changing cell is the months (B12).


Attachments
GoalSeekExample.xlsx (49 downloads)



Edited by Tim (01/02/2017 13:41)
Edit Reason: Added example

Top
#368272 - 01/02/2017 14:51 Re: Spreadsheet Formula [Re: Dignan]
gbeer
carpal tunnel

Registered: 17/12/2000
Posts: 2665
Loc: Manteca, California
Isn't it just Months = NewSunkCosts / (CurrRecCosts - NewRecCost)
Then round up.
_________________________
Glenn

Top
#368273 - 01/02/2017 16:27 Re: Spreadsheet Formula [Re: gbeer]
Tim
veteran

Registered: 25/04/2000
Posts: 1522
Loc: Arizona
Far too easy doing it that way. Where is the fun in that?

Top
#368274 - 01/02/2017 18:54 Re: Spreadsheet Formula [Re: Dignan]
Dignan
carpal tunnel

Registered: 08/03/2000
Posts: 12318
Loc: Sterling, VA
Damnit, I knew I wasn't looking at it correctly. Thanks for that, Glenn. I've finished the spreadsheet.
_________________________
Matt

Top