Error in my formula?

  • Thread starter Thread starter fivermsg
  • Start date Start date
F

fivermsg

in this formula i am calculating and increase of 25 cents per full
percent increase in a range of 110%-124%, but when i get to 120%
percent this formula becomes inaccurate? what did i do wrong? the
formula starts at 4.00$ and adds .25 per/percent.

(IF(E10<1.1,0,4+INT(MOD(E10*10,1)*10)*0.25))
 
Would this do it for you? It's slightly more intuitive, for not having
the INT and MOD functions.
=(IF(E10<1.1,0,4+((E10*100)-110)*0.25))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top