I'm using an IF AND FORMULA in column O based on certain criteria.
I need to add additional criteria (if have have >0% royalty) in column J to the nested IF AND array formula, but I'm receiving the error message of too many arguments.
This is my current formula:
=IF(AND(M8>=$L$2,M8<$M$2),N8*$N$2,IF(AND(M8>=$M$3),N8*$N$3,IF(AND(M8<$M$1),N8*$N$1)))
This is what I tried and got the error message:
=IF(AND(J8>0,M8>=$L$2,M8<$M$2),N8*$N$2,0,IF(AND(J8>0,M8>=$M$3),N8*$N$3,0,IF(AND(M8<$M$1),N8*$N$1)))
Solved by I. H. in 15 mins