Im attempting to make something that AUTOMATICALLY creates a way to change a percentage...
our table goes like so.. 45% and up is 8% on another line anything between 44-41% is now 6% and 39% to 35% is 4% anythign less than 34% is 0% ..
This is my equasion I think im on the right track but it does not give me the right numbers except the
first 8% . This is my first equasion like this so ANY help would thanks....
=IF([Math Test 2]7 < 45, "8%", IF([Math Test 2]7 = 44, 43, 42, 41, "6%", IF([Math Test 2]7 = 39, 38, 37, 36, "4%", IF([Math Test 2]7 < 34, "0%"))))
so it shoud show like this
Markup is 45% commission is 8%, Markup is 40% Comission is 6%, Markup is 35% comission is 4%, Markeup is 34% and lower comission is 0% ...
Thanks for any help..