Data Validation

Jeff Gentry

New Member
Joined
Oct 6, 2005
Messages
43
I want to use the custom feature under "allow" in data validation so that before a value can be entered in cell d4, there must be a date entered in cell a3. Please note that I have applied data validation in cell a3 so that it will only accept dates in the following format xx/xx/xx. What would be my formula under the custom option to make this happen? I thank you in advance for your time!
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Hi Jeff, Try:
Code:
=SUM(A3)>0

This is trickier than it first appeared. ;)

There are many different formulas that work when Ignore Blanks is unchecked.
Such as:
Code:
=ISBLANK(A3)=FALSE
=LEN(A3)>0

However, when Ignore Blanks is checked these forumulas don't restrict
a user from entering values in D4, even if A3 is blank.
(It's as if the Ignore Blanks was extending to A3 as a dependent cell).

SUM seems to get around this though.
 
Upvote 0
try this in D4,

Data Validation > Settings > Allow > Custom

in Formula type: =A3<>""

Uncheck Ignore Blank.
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,710
Members
452,939
Latest member
WCrawford

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top