Conditional Value

M

Michael S.

Column A = Job Status
Column B = Date Completed

What I would like to have is if Column A = Done and Column B has no value, I
need to have a warning or a pop up of some kind stating that Column B needs
to have a date value when column A = Done.

Thank you in advance.
 
B

Bob Phillips

in a separate column?

=IF(A2="Done",IF(B2="","Date required",""),"")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
M

Michael S.

In the same column. Column B has to have a date in the cell if Column A =
Done. I do not want users to be able to do anything else until they put the
date of completion in.

I tried the formula you supplied, however I was not able to get it to work.
 
B

Bob Phillips

You can throw up a message when they enter Done in A, but it will be very
difficult to force them to do it before anything else.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top