Enter the Formula in C14 as follows:
=IF(C13>=95,C13*0.78,IF(C13>=90,C13*0.52,IF(C13>=85,C13*0.32,0)))
Brian, thanks for your quick response. I entered what you gave me into the cell, but no matter what, it comes up 0.00% Have I done something incorrect or is a parameter missing or something? I'm very new to this so I'm pretty clueless.
Re: Need a little more help
Hi Lori,
What should happen if C13 is between 80% and 84.999%?
Re: Need a little more help
Assuming you want anything 80 through less than 90 at 32% try this in D13
=HLOOKUP(C13,{-999999,0.8,0.9,0.95;0,0.32,0.52,0.78},2)*C13
Assuming you want anything 85 through less than 90 at 32%, try
=HLOOKUP(C13,{-999999,0.85,0.9,0.95;0,0.32,0.52,0.78},2)*C13
good luck
Without reinventing the wheel
Brians works fine, too. Just change 95 to .95, 90 to .9, etc. to properly compare your percent.
Good luck
Thanks for the extra info
I will try it out tomorrow when I get to work and let you know what happens.