I have a nested IF Statement that if a single cell has one at of information. For example:
=IF(A1="YES",
IF(AND(B2="OLD",B3="DOG"),"OLD DOG",""),
IF(A1="NO",
IF(AND(B2="YOUNG","CAT"),"YOUNG CAT",""),))
The formula isn't that simple but it gives the basic premise of what my issue is. My issue...