IF statement help please
Hi
How do I write an IF statement if I want it to look for different ranges and if that meets certain criteria to do a SUM calculation.
For example
So if range is 'Low' I want it to add 1.5% onto current column
if range is 'Mid' I want to add 1% onto current column
and if range is 'High' I want to add 0.5% onto current column
I have tried this formula but it errors saying the = looks like a formula and to add an apostrophe before = , so '= but this does not work either
=IF(AND(AB2 ="Low",(SUM(U2/V2)*SUM(Z2+1.5)%*12),IF(AND(AB2 ="Mid", (SUM(U2/V2)*SUM(Z2+1)%*12),IF(AND(AB2 ="High", (SUM(U2/V2)*SUM(Z2+0.5)%*12)))))))
I'm thinking i have not ut the brackets in correct place maybe......??? Help please
Thanks
In AD2:
=AC2*IF(AB2="Low",101.5%,IF(AB2="Mid",101%,IF(AB2="High",100.5%)))
or
=AC2*IFS(AB2="Low",101.5%,AB2="Mid",101%,AB2="High",100.5%)