I'm not the best in excel so I would like to ask about some conditionals, I'm adding the AND to my original formula that is this one:
=IF(G2>=0.8, "Valid", "Not Valid")
Basically if my value is equal or higher to 0.8 print Valid if not "Not valid" everything fine with that but when I try to add the AND with this formula:
=IF(AND(G2>=0.8, G2<=0.2, "Zero"),"Valid", "Not Valid")
So what I'm trying to do in this formula is that if the value is lower than 0.2 print "Zero", any value between 0.2 to 0.8 will be not valid and everything higher than 0.8 is valid so. I'm not really sure what is missing. This is an image from my sheet:
