Hi,
I have a value in Cell 1 that I need to check in numerous ways (including against another cell) and then have some text displayed in the cell where the checking is done.
If the value in Cell 1 is >=.2 or Cell 2 = "YES" then Cell 3 needs to display "PD"
If the value in Cell 1 is <=-0.3 then cell 3 needs to display "
PR"
If the value in Cell 1 is <=-0.1 then cell 3 needs to display "CR"
If the Value in Cell 1 doesn't meet any of the criteria above then display "SD"
This is what I have started with but something is not right:
=IF((OR(D31="YES",D29>=0.2)),"PD",(OR((D29<=-0.3),"
PR",(OR((D29<-1),"CR","SD")))))
But I am getting a value error in Cell 3. Any Help would be greatly appreciated. Thanks in Advance.