You can do it with Data Validation on the Data menu. Select A3 and
then open the Validation dialog. There, choose "Custom" from the Allow
list. In the formula box, enter a formula that returns either TRUE or
FALSE, depending on some calculation based on A4. If the formula
returns TRUE (or any non-zero numeric value), the input value will be
allowed in A3. If the formula returns FALSE (or zero), the input value
will not be allowed. For example, if the validation formula in A3 is
=IF($A$4>100,TRUE,FALSE)
input will be accepted only if A4 is greater than 100. (Of course, you
could shorten this formula to =$A$4>100, but I use the IF for
clarity.)
Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)