• 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.

Help required with formula to find status based on different columns

Hello All,

I need some help with formula to find out status based on the dates available in either of columns.

If data is available in Approved column then status should be approved despite dates available in Reject columns.

Or if date is available in any of the reject columns (no date in approved column) then status should appear as Reject

I have attached a sample with example (Column A to E).

Columns I to M - status as what is actually required.

Let me know if anything is unclear.

Regards
Ajinkya
 

Attachments

In E2:
=IF(ISNUMBER(D2),"Approved",IF(ISNUMBER(A2),"Reject",""))
Copy down
 
Back
Top