Hello all,
So I've got this formula that automatically breaks down budgeted hours into individual cells based on Start and Finish Date and Total budgeted. Now I'd like to add another set to this formula that will calculate different hours and break them down too. The circled ones are already being calculated and the yellow ones I'd like to add to calculate equally into the highlighted cells. It's always going to be 3 months duration which I think may make the second formula easier - now my problem is how to join them together so I can just dragfill the whole row with the formula and it will automatically do what it needs to do, ie put Start-Up Hours to certain cells and then fill the rest with what it already being done? Please note that the total budgeted does not include the Start-Up hours. These are two separate sets of hours.
The formula I currently have is:
=IFERROR(IF(AND(VALUE(YEAR($[MDR Start]@row) + "" + IF(MONTH($[MDR Start]@row) < 10, "0") + MONTH($[MDR Start]@row)) <= [Oct-20]$1, VALUE(YEAR($Finish@row) + "" + IF(MONTH($Finish@row) < 10, "0") + MONTH($Finish@row)) >= [Oct-20]$1), $[Total Budgeted]@row / COUNTIFS($[Oct-20]$1:$[Dec-26]$1, AND(@cell >= VALUE(YEAR($[MDR Start]@row) + "" + IF(MONTH($[MDR Start]@row) < 10, "0") + MONTH($[MDR Start]@row)), @cell <= VALUE(YEAR($Finish@row) + "" + IF(MONTH($Finish@row) < 10, "0") + MONTH($Finish@row))))), "")
I also have a helper row for this formula that looks as follows:
I've tried replacing the column names in the formula with the new column names, but it is a trouble for me to somehow joining these two formulas together.
Thanks!