Data Validation

G

Guest

I am looking for a formula to place in Data Validation / Custom so that an
amount cannot be placed in cell a2 unless a1 has a value in it and the value
in a2 must not exceed the value in cell a1.
 
G

Guest

Use this formula:

=AND(A1<>"",A2<A1)

Make sure that the option for "Ignore Blank" is unchecked.
 
G

Guest

Minor correction:

=AND(A1<>"",A2<=A1)

This will allow A2 to be equal to or less than A1, but not exceed.
 
G

Guest

Hello Dom

I have tried the formula and it works great.
What would this world do without people like you
Thanks a lot
Regards
Ollie
 

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