excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have a column which contains dates, i want to get a result of " done" in
the column next to it if any date is available , or "outstanding" if the
there is no date.
Thanks
 
Assuming the dates in column A, one way:


B1: =IF(A1="","outstanding","done")
 
Not clear,
Assume
the result:
coulm a coulm b
12-8-2004 Done
13-8-2004 Done
NA not done
NA not done

IE : ANY DATE SHOWN IN COLUM A , SHOULD GET A RESULT WITH "DONE" & IF THERE
IS NO DATE , GET A RESULT WITH "NOT DONE"

THANK YOU VERY MUCH
 
Dates are just numbers to excel. Maybe you can use that:

=if(isnumber(a1),"done","not done")
 

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