Formula Pop Up Error Msgs

G

Guest

Hi,

This should be an easy one. I want to display an error message when the
cell that has the speed formula (Miles / Hours) exceeds 515 mph or is below
440 mph. I have not had success with the data validation route. With IF
statements I can get error messages in the cell, but I’d really like and
error dialog box to pop up so the user is forced to correct the error or give
rational for the unusual speed.

I’m a novice that doesn’t know VBA, so I pretty much need step by step
instructions.

Thanks In Advance,
 
G

Guest

With Validation, you could use:

Allow:
Custom
Formula:
=AND(A1>=440,A1<=515)

HTH
Jason
Atlanta, GA
 

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