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

multiple if criteria with 3 results option

r_2

Member
hi
following are the requirement
if d = pending with UIDAI(DQC) & E= ""(blank) column G will reflect pending with customer.
if d= other option & E=blank column G will reflect pending wth team.
if E= non blank column G will reflect closed


my column F function is working , were if criteria is =if (E2="","pending with team", "closed").
need to add the criteria of column D with above that is =if (D2=Pending with UIDAI(DQC),E2=""),"Pending with customer","Pending with team").

pls help to merge this 3 criteria....

my g columns if is showing the value.
 

Attachments

  • 3if.xlsx
    9.9 KB · Views: 1
Hi,

Please try

=IF(AND(D2="Pending with UIDAI(DQC)",E2=""),"Pending with customer",IF(E2="","Pending with team","Closed"))

Attaching file for your ready reference.
 

Attachments

  • 3if-Swapnil.xlsx
    9.9 KB · Views: 2
  • Like
Reactions: r_2
Back
Top