I'm tracking down some discrepancies and am attempting to prioritize them as ABC or D. I thought this would be simple but...
My criteria is that if a cell value is more than 1000 or less than -1000 it would be classified as an A priority
If >500 and < 1000 or <-500 and >-1000 is a B
If >100 and < 500 or <-100 and >-500 is a C
<100 is a D
I've been scratching my head as to what is causing my issue, but essentially it doesn't assign priority as I expected. the A,B and C priorities assign as expected but D doesn't seem to make it into the decision
Any thoughts or input would be very much appreciated
Thanks,Bill
</and100></and500></and(-500)>
My criteria is that if a cell value is more than 1000 or less than -1000 it would be classified as an A priority
If >500 and < 1000 or <-500 and >-1000 is a B
If >100 and < 500 or <-100 and >-500 is a C
<100 is a D
I've been scratching my head as to what is causing my issue, but essentially it doesn't assign priority as I expected. the A,B and C priorities assign as expected but D doesn't seem to make it into the decision
Any thoughts or input would be very much appreciated
Thanks,Bill
Code:
=IF(M2>OR1000<(-1000),"A",IF(M2>AND500<1000,"B",IF(M2<and(-500)>(-1000),"B",IF(M2<and500>100,"C",IF(M2>AND(-500)<(-100),"C",IF(M2<and100>0,"D",IF(M2>AND(-100)<0,"D"))))))))
Last edited: