If formula

M

Mohamed

I have a column sometimes it have dates and sometimes blank. i want to create
a formula "if there is any date, get me a result with "done", if there is no
date get me a result with "not done". for example

Coulmn A Column B
14-8-2002 Done
Blank Not Done
 
D

Don

Hi Mohamed,

Assuming you mean empty by blank and not the
text "blank"...Try this:

=IF(A1="","Not Done","Done")

HTH,

Don
 
B

Biff

Hi!

Try one of these:

=IF(A1="","Not Done","Done")
=IF(ISBLANK(A1),"Not Done","Done")
=IF(ISNUMBER(A1), "Done","Not Done")

Biff
 

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

Top