• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

IF OR Statement

If E4 has an X, I need D2 to show AM or D2 to show PM if E5 has the X. See attached File. Thanks.
 

Attachments

  • IF OR Statement.xlsx
    8.6 KB · Views: 7
D2: =IF(E4="x","AM","PM")
or
D2: =IF(E4="x","A","P")&"M"
or
D2: =INDEX(F4:F5,MATCH("x",E4:E5,0))
 
Last edited:
Back
Top