Forum Discussion
Kristie365
Dec 05, 2023Copper Contributor
Excel Formula Error - Too Many Arguments - Comma or Parenthesis Error?
Greetings, I am trying to create the following formula - =IF(F2=$P$2,IF(M2>0.6,3%,IF(M2>0.5,2%,IF(M2>0.4,1%,IF(M2>0.3,0%)))),IF(F2=$P$4,IF(M2>0.6,3%,IF(M2>0.5,2%,IF(M2>0.4,1%,IF(M2>0.3,0%)))),I...
- Dec 05, 2023
HansVogelaar This works! Thank you so much! And now makes much more sense. Have a wonderful day.
HansVogelaar
Dec 05, 2023MVP
Try this:
=IF(F2=$P$2,IF(M2>0.6,3%,IF(M2>0.5,2%,IF(M2>0.4,1%,IF(M2>0.3,0%,"")))),IF(F2=$P$4,IF(M2>0.6,3%,IF(M2>0.5,2%,IF(M2>0.4,1%,IF(M2>0.3,0%,"")))),IF(F2=$P$3,3%,IF(F2=$P$5,1%,""))))
- Kristie365Dec 05, 2023Copper Contributor
HansVogelaar This works! Thank you so much! And now makes much more sense. Have a wonderful day.