• 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.

Repeating cell values at a starting point determined by another cell

Patrick101

New Member
I am trying to populate a recurring value shown in (E4:E12) in column I that will need to be repeated for a number of months that is referenced in another cell (D4:D12). These values must begin at a month that is referenced in B4:B12. Also, currently I have filler columns J through P that I would like eliminate. Can I consolidate the formulas into column I so I can add more information to the table A4:E12?

I have added a tab labeled "Explanation" to the workbook to hopefully clarify this further.

Thank you in advance for your help with this Brain Busting Excel Dilemma!

Patrick
 

Attachments

Bosco,

Thank you so much for your help! I can't tell you how many hours of frustration you saved me today.

You are the best!

Patrick
 
Using dynamic arrays
= MMULT(
IF( (modelPeriod>=TRANSPOSE(Month)) * (modelPeriod<=TRANSPOSE(Month+DepreciationMonths)),

TRANSPOSE(DepreciationAmount),
0 ),
SIGN(Month) )

entered into cell I4. Otherwise the same formula as a CSE array entered into the range I4:I139.
 

Attachments

Back
Top