+ Reply to Thread
Results 1 to 8 of 8

Starting with 10 page, 10 year timeline: Want to add scheduled costs and maint. in year 3

  1. #1
    Registered User
    Join Date
    03-01-2016
    Location
    Alaska
    MS-Off Ver
    Excel for Mac 2011
    Posts
    6

    Starting with 10 page, 10 year timeline: Want to add scheduled costs and maint. in year 3

    I need some help with some formulas but having a hard time expressing what I would like to show so please bear with me.

    I have a 10 page spreadsheet of a hypothetical startup company.
    Each page is one year or 12 months.
    The company will manufacture and lease a product.
    Page one has the 1st year as well as 40 different variables (found in 40 different cells) that play out over the 10 years.

    All of my production run is currently in year one (page one) when 12 units are made and leased out. The revenue stream is carried out over the 10 years. Now I would like to add some scheduled maintenance every 24 months on the units that will cost $12,000 per unit and will take place over 6 months (I would like to show $24,000 each month over 6 months).

    I can simply add the additional cost of maintenance in each month but I don't want to have to add it into 6 months in year three, then add it to years 5, 7, and 9. I would like to do it all from a formula and the variables on page one.

    Right now everything is controlled by these variables but I would like to add some additional variables for a 2nd production run starting in year 3 and put them into use starting in year 4 (month 37).

    At this point, I'm not sure how to attack things. Since a picture is worth 1,000 words, I have attached my file for those of you wish to actually look at what I'm talking about. If it doesn't attach let me know.

    If you need more info, also let me know.

    Thanks for any help you can provide.

    Rick

  2. #2
    Registered User
    Join Date
    03-01-2016
    Location
    Alaska
    MS-Off Ver
    Excel for Mac 2011
    Posts
    6

    Re: Starting with 10 page, 10 year timeline: Want to add scheduled costs and maint. in yea

    I still haven't been able to figure it out yet. Does anyone have any ideas?

    Thanks,
    Rick

  3. #3
    Valued Forum Contributor
    Join Date
    01-16-2012
    Location
    England
    MS-Off Ver
    MS 365
    Posts
    1,394

    Re: Starting with 10 page, 10 year timeline: Want to add scheduled costs and maint. in yea

    Rooster,

    Sadly, you can't do it from the Year One sheet, because Excel doesn't have the facility to change a cell from another cell, (e.g. you can't put a formula in C76 of Year One that will change row 28 in future years).

    The only "formula" solution is to set the "start" and "end" dates somewhere on the Year One sheet. Then, in every month on each sheet, have a formula saying "If the date in row 4 of this column is between the dates in Year One's sheet, do whatever",

    The easiest way is to use a Macro.

    Simple command that loops through every month on every sheet and, if the date is right, do "whatever"?

    Ochimus

  4. #4
    Registered User
    Join Date
    03-01-2016
    Location
    Alaska
    MS-Off Ver
    Excel for Mac 2011
    Posts
    6

    Re: Starting with 10 page, 10 year timeline: Want to add scheduled costs and maint. in yea

    Ochimus,

    Thank you for responding. To clarify, I'm more than happy to put in the formula into all of the years, I just want to input the variable on the first page.
    Right now it is set to start making 12 units in month 1 and they get leased in month 5 and start producing income. I would like to say in month 30 we begin construction on 12 more units and they go into lease on month 37. The only thing I want to do on the first page is input the variables "Begin 2nd Group Construction in" month "30" and Begin Leasing 2nd group of Units in" month "37" where "30" and "37" are input on the first page before the spreadsheet is run.
    Hopefully this is not too difficult to do and someone can help me figure out how to input that formula throughout the years and I can add a 3rd round of construction and maybe even a fourth.

    Thanks for your help.
    Rick

  5. #5
    Valued Forum Contributor
    Join Date
    01-16-2012
    Location
    England
    MS-Off Ver
    MS 365
    Posts
    1,394

    Re: Starting with 10 page, 10 year timeline: Want to add scheduled costs and maint. in yea

    Rick,

    I have made a "simplified" dataset so the concept is clear, rather than having to scroll up and down as required on your original.

    C10 shows you start with 12 units generating $1oo each (C11)

    Enter the number of extra units you want into C14.

    Col P is a range named ""Months" that populates a DropList in C15.

    Select the "Start Date" in C15

    You said you started earning after five months, so C16 finds the row in the range that matches the Start Date, and adds five to it

    ="Month "&MATCH(C15,Month,0)+5

    In A2 you then set the formula as:

    =IF(A1>=$C16,($C10+$C14)*$C11,$C10*$C11)

    (If the date in A2 is more than, or equal to, the Revenue Date in C16, then add the original and new units together and multiply that by the revenue in C11.
    If the date is less than the revenue date for the new build, just multiply the original number in C10 by the C11 revenue.)

    Copy that across to the Col L.

    If you now change the New Start date in C15, the month the additional revenue kicks in changes automatically

    If you then want to add a third set later on, you repeat the steps a few rows down, and extend the formula in row 2 so it says "if the date is more than the third set, add the three lots, it if is more than the second, just add the two, otherwise just use the original number"

    And for the other years, you add whichever Sheet Number has your Year 1 variables (Sheet 1 in the attachment, but change as you need it):

    =IF(A1>=Sheet1!$C16,(Sheet1!$C10+Sheet1!$C14)*Sheet1!$C11,Sheet1!$C10*Sheet1!$C11)


    Hope it is clear?

    Ochimus
    Attached Files Attached Files
    Last edited by Ochimus; 03-09-2016 at 11:09 PM.

  6. #6
    Registered User
    Join Date
    03-01-2016
    Location
    Alaska
    MS-Off Ver
    Excel for Mac 2011
    Posts
    6

    Re: Starting with 10 page, 10 year timeline: Want to add scheduled costs and maint. in yea

    Ochimus,

    Thank you so much for your thoughtfulness to my problem. I will work on this and see where I land. I think I can connect all the your dots. Thanks again!

    Rick

  7. #7
    Valued Forum Contributor
    Join Date
    01-16-2012
    Location
    England
    MS-Off Ver
    MS 365
    Posts
    1,394

    Re: Starting with 10 page, 10 year timeline: Want to add scheduled costs and maint. in yea

    RIck,

    Computer is playing up - explanation following

    Ochimus
    Attached Files Attached Files

  8. #8
    Valued Forum Contributor
    Join Date
    01-16-2012
    Location
    England
    MS-Off Ver
    MS 365
    Posts
    1,394

    Re: Starting with 10 page, 10 year timeline: Want to add scheduled costs and maint. in yea

    Rick,

    Attachment just sent has the formulae you want in every sheet. Works as follows for each January column,and dragged across the other eleven months:

    =IF(AND('Year 1'!$D89<>"",B4>='Year 1'!$D89),((365/12)*('Year 1'!$D60+'Year 1'!$D77+'Year 1'!$D82+'Year 1'!$D87)*('Year 1'!$D69*4)),IF(AND('Year 1'!$D84<>"",B4>='Year 1'!$D84),((365/12)*('Year 1'!$D60+'Year 1'!$D77+'Year 1'!$D82)*('Year 1'!$D69*4)),IF(AND('Year 1'!$D79<>"",B4>='Year 1'!$D79),((365/12)*('Year 1'!$D60+'Year 1'!$D77)*('Year 1'!$D69*4)),((365/12)*('Year 1'!$D60)*('Year 1'!$D69*4)))))


    Is there a Fourth Set (Start of Use in Sheet1 D89)
    If yes, it checks whether the Month number is more than or equal to that date.
    If yes, it adds D60+ D72+D82+D87 on the Year 1 sheet and calculates on that total

    IF there is no Fourth Set, or the Month number is before that Start of Use, , it looks for a Third Set (Start of Use in Sheet1 D84)
    If yes, it checks whether the Month number is more than or equal to that date.
    If yes, it adds D60+ D72+D82 on the Year 1 sheet and calculates on that total

    IF there is no Third Set, or the Month number is before that Start of Use, , it looks for a Second Set (Start of Use in Sheet1 D79)
    If yes, it checks whether the Month number is more than or equal to that date.
    If yes, it adds D60+ D72 on the Year 1 sheet and calculates on that total

    If there is no Second Set, or the Month number is before that Start of Use, , it uses the original number in Sheet1 D60

    I set the attachment for months 30, 40 and 50, but if you change or clear them, you can see the lease revenues change accordingly.

    Two quick points. I would "lock" those cells to ensure nobody deleted or changed the formulae. Secondly, you have not allowed for inflation? The costs and revenues in Year 10 are still those you set in Year 1?

    Ochimus
    Last edited by Ochimus; 03-11-2016 at 02:06 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Sum costs for a month and year using sumifs
    By bberger1985 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-17-2014, 01:08 PM
  2. Replies: 3
    Last Post: 09-04-2013, 10:49 AM
  3. Sum project costs by calendar year
    By eclose in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 07-12-2013, 12:16 PM
  4. Replies: 1
    Last Post: 06-13-2013, 06:18 PM
  5. [SOLVED] Apportioning Costs by % and Year
    By PERE in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-19-2013, 04:31 AM
  6. [SOLVED] Look up a date base on the year, and add up costs for that year from list
    By spedigo228 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-27-2012, 08:25 AM
  7. Adding costs in a specific year
    By kanuvas in forum Excel General
    Replies: 2
    Last Post: 06-05-2008, 11:19 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1