Multiple IF AND statements excel

前端 未结 4 1037
甜味超标
甜味超标 2020-12-03 21:43

I need to write an \"if\" statement in Excel based on text in two different cells.

If E2 =\'in play\'   and F2 =\'closed\'      output 3 
If E2= \'in play\'         


        
4条回答
  •  天命终不由人
    2020-12-03 22:35

    Making these 2 communicate

    =IF(OR(AND(MID(K27,6,1)="N",(MID(K27,6,1)="C"),(MID(K27,6,1)="H"),(MID(K27,6,1)="I"),(MID(K27,6,1)="B"),(MID(K27,6,1)="F"),(MID(K27,6,1)="L"),(MID(K27,6,1)="M"),(MID(K27,6,1)="P"),(MID(K27,6,1)="R"),(MID(K27,6,1)="P"),ISTEXT(G27)="61"),AND(RIGHT(K27,2)=G27)),"Good","Review")
    
    =IF(AND(RIGHT(K27,2)=G27),"Good","Review")
    

提交回复
热议问题