Help with a blank cell warning

M

Maxemily

I am trying, quite unsuccessfully I might add, to have a warning pop u
if a cell is left blank, but only if there is any typing in anothe
specific cell. Example:
--------------------------------------------------------------------------------------
Describe the information given:
________________________________________________
Was this useful?
Yes: __ No: __

-Please select yes or no-
--------------------------------------------------------------------------------------
In this example, had there been a response given to the question, bu
with no yes or no response, the -Please select... -message would appea
below the yes/no line.

Thank
 
P

pdberger

Maxemily --

If you want some language to appear if there's an entry in cell A1, try:

=if(A1<>"","some language","")
 
Top