Conditional cell

  • Thread starter Thread starter grahammal
  • Start date Start date
G

grahammal

I have a dropdown menu in cell A1 that is either Yes or No.
I want cell C1 to display "Data Required" if A1 = Yes and is left blan
if A1 = No.
How do I program cell C1?
 
=if(a1="yes","data required","")
or
=if(a1="yes","data required",if(a1="no","","Not Yes and Not No"))
 
=IF(A1="Yes","Data Required","")

This assumes that A1 will always be "Yes" , "No" or blank.

HTH

Steve
 
Ignore my previous comment, what I meant to say was it assumes that you
want to return blank if any value other than "Yes" is in A1.

Regards,
Steve
 
IN cell C1 put this formula............

=IF(A1="yes","Date required","")

Vaya con Dios,
Chuck, CABGx3
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top