Is it possible to have an alert in Excel?

  • Thread starter Thread starter Mukesh
  • Start date Start date
M

Mukesh

Is it possible to have an alert when some info is entered
in any particular cell? for example if I enter 1 in Cell A1,
can I have an alert saying "check data in cell D4" ?

Thanks.
Mukesh
 
Mukesh,

Try using Data Validation which will do what you want. Have a play with
that and post back if you have problems.

Rob
 
Thanks RobN, I think Data Validation should solve
my purpose...just need to play a bit.

Thanks.
Mukesh
 
RobN, using Data Validation, is it possible to have an
alert only if some criteria is not met....for example
I type some text in cell A2, which is data validation cell,
I need an alert only if A1 is empty, if its filled, move on....no alert.

If its not possible to do so using Data Validation, can you please
tell me how I can do using macros. I need alert only if the
conditions are not met.

Thanks.
Mukesh
 
Mukesh,

I don't know if my computer's gone nuts, but I thought selecting cell A2,
then selecting Custom in the Allow section of Data Validation, and typing
a1<>""
in the formula section should have done it. But on my system it's not
working.

Maybe someone else can help out here, as I'm sure Data Validation will do
what you want.

Rob
 
Rob,

Same here, my computer too gone nuts, its not working!
Aparently, its not the computer going nuts, its the formula,
hope someone here might be able to help.

Thank you Rob for your efforts.

Mukesh
 
Mukesh,

Unless someone comes up with a better idea, this should work.....
You'll need to use a helper cell, so I'll presume B1 is free to use.
In B1 type
=A1=""
(This will mean if A1 is blank, you'll get a TRUE result in B1)

Then select A2 and in data validation type as the formula
=B1=FALSE

You can hide column B if you don't want to see the TRUE or FALSE result.
Otherwise use another cell somewhere else as the helper cell.

HTH

Rob
 
Rob,

I figured it out! ....you just have to untick the "ignore blank"
and formula " =A1<>0 " works!

Thank you sooo much for your efforts to sort this out.

Thanks again.
Mukesh
 
Back
Top