IF formula-simple question; simple operator

  • Thread starter Thread starter Rich D
  • Start date Start date
R

Rich D

If the entry in A1 is "Job", and if any of the cells B1, C1, D1 are blank, I
want to return (in cell E1) the message "MISSING INFO". I know it's simple
but I'm missing something myself.

Thanks,
 
I am not sure you would call this simple, but try this formula in cell E1

=IF(AND(A1="JOB",OR(ISBLANK(B1),OR(ISBLANK(C1),ISBLANK(D1)))),"MISSING
INFO","ALL DATA THERE")
 
Try this in E1

=IF(A1="job",IF(COUNTA(B1:D1)<3,"Missing date",""),"This appears if Job
isn't in A1")


You don't specify what to do if A1 doesn't contain Job so this formula
displays
This appears if Job isn't in A1
You could simply leave emprt quotes and display nothing if you prefer.

Mike
 
Back
Top