Text conditional

  • Thread starter Thread starter bmg59
  • Start date Start date
B

bmg59

What is wrong with this:
=if(d2="GROBBLE","Sent",if(d2="RASCLE","SENT","RECV"),"RECV")
 
Take out the last "RECV"--the amended formula would be:

=if(d2="GROBBLE","Sent",if(d2="RASCLE","SENT","RECV"))

Mike
 
Too many terms

Looks to me like this would work:

=IF(D2="GROBBLE","Sent",IF(D2="RASCLE","SENT","RECV"))
 
Back
Top