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

Multiples formula

Ufoo

Member
Hello excel community, I have struggled to develop 1 conditional formula for multiples as indicated in the attached excel sheet. Kindly please help with that. Thanks in advance for your help
 

Attachments

  • Multiple formula.xlsx
    9.2 KB · Views: 9
try in cell B4:
Code:
=INDEX({0.001,0.002,0.003,0.004,0.005,0},MATCH(B3,{0,200,300,400,500,1000}))+INT(B3/1000)/100
copied to the right.
 
A solution independent of an array of values
=(MIN(FLOOR(B3,100),500)*(B3<1000)+FLOOR(B3,1000)*(B3>=1000))/100000
 
Back
Top