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

Excel - Dynamic output based on Min / Max Inputs

Please view the attached example.

I need help automate columns J - AN based on adjustable metrics. The goal for this is to be able to adjust the Min, Target, and Maximum, Bonus which will automatically update columns J - AN. The target is what I am achieve to hit. Anything more is a bonus, anything less is between the Min and Target.

The output in column J - AN would reflect the metrics. These metrics should dynamically change columns J-AN.

It's okay if there are different formulas on either side of the target.

Thank you in advance!!!
 

Attachments

  • Increments Example.xlsx
    15.2 KB · Views: 4
Try:
To replace current formula in H9 (=C9):
=SEQUENCE(,16,C9,(D9-C9)/15)
and delete the formula =D9 in cell W9

You can copy this formula down one cell to get the percentages.

In cell X9:
=SEQUENCE(,15,D9+(E9-D9)/15,(E9-D9)/15)
copy down. Delete the formulae in column AL

I do not understand how to incorporate the Bonus More than Target of 0.1.
 
Try:
To replace current formula in H9 (=C9):
=SEQUENCE(,16,C9,(D9-C9)/15)
and delete the formula =D9 in cell W9

You can copy this formula down one cell to get the percentages.

In cell X9:
=SEQUENCE(,15,D9+(E9-D9)/15,(E9-D9)/15)
copy down. Delete the formulae in column AL

I do not understand how to incorporate the Bonus More than Target of 0.1.
Thank you!!! This works great. I forgot about the Sequence formula.
 
Back
Top