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

Burnout Formula - FIFO(First in first out)

Pinang

Member
Hi,

I require a formula/VBA code to burnout amount in FIFO basis. attached example file for reference.

Formula should burnout first month value then balance amount from second month. I need a formula in Range(J3:L8).

Thanks in advance.
 

Attachments

  • Burnout Formula Requiered - FIFO.xlsx
    10.1 KB · Views: 6
You can try
[J3]=IF(I3="",MIN($H3,C3),MIN(C3,MAX(0,$H3-SUM($I3:I3))))
 

Attachments

  • Copy of Burnout Formula Requiered - FIFO-1.xlsx
    10.4 KB · Views: 17
Back
Top