I need some help with constructing a formula. This is what I have:
=IF((AND(G22="Strong Positive",I22="Positive")),"Moved Up",(IF((AND(G22="Strong Positive",I22="New")),"New Report"),(IF((AND(G22="Positive",I22="Promising")),"Moved Up",(IF((AND(G22="Promising",I22="Caution")),"Moved Up",IF(G22="Caution","Moved Down",(IF(G22=I22,"No Movement",(IF(G22="New","New Report")))))))))))
I don't know why it doesnt work, but essentially I want to create a nested IF(AND formula which translates to the following:
=IF((AND(G22="Strong Positive",I22="Positive")),"Moved Up",(IF((AND(G22="Strong Positive",I22="New")),"New Report"),(IF((AND(G22="Positive",I22="Promising")),"Moved Up",(IF((AND(G22="Promising",I22="Caution")),"Moved Up",IF(G22="Caution","Moved Down",(IF(G22=I22,"No Movement",(IF(G22="New","New Report")))))))))))
I don't know why it doesnt work, but essentially I want to create a nested IF(AND formula which translates to the following:
- If G22 is "Strong Positive" and I22 is "Positive", then make cell "Moved Up",
- Otherwise, If G22 is "Strong Positive" and I22 is "New", then make cell "New Report",
- Otherwise, If G22 is "Positive" and I22 is "Promising", then make cell "Moved Up",
- Otherwise, If G22 is "Promising" and I22 is "Caution", then make cell "Moved Up",
- Otherwise, If G22 is "Catuion" then make cell "Moved Down",
- Otherwise, If G22=I22 then make cell "No Movement",
- Otherwise, If G22 is "New" then make cell "New Report".