DEPENDENT DATA VALIDATION

bigbob

Board Regular
Joined
May 31, 2002
Messages
82
Hello world
I have put together a spreadsheet for keeping track of daily attendance for our staff and have 4 cells for each day .2 start times and 2 finish times .?For each cell I have used data validation to force entry of times at 15 minute intervals .What I would like to achieve is for the second data validation list to begin from the time entered into the first cell rather than showing the full list as at present .I would prefer a solution not involving VBA as my knowledge of this is VERY limited
Thanks in anticipation of your replies
Bob
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Let's say you have a list of times in 15 minute intervals, that it is named Times and forms the source of Data Validation in C1. Choose Insert|Name|Define, type TimesLeft in the Names box, in the Refers to box enter:

=INDEX(Times,MATCH(Sheet1!$C$1,Times)+1):INDEX(Times,ROWS(Times))

changing the reference to C1 if necessary and click OK. Set up Data Validation for your second cell to Allow List, Source:

=TimesLeft
 
Upvote 0
I was going to suggest this to limit their choices to now rounded up 15 min., but the source doesn't update until after you choose something from the list. Oh well something to look at.
Book1
ABCDEF
4MONDAY
5STARTFINISHSTARTFINISH
611:15 AM11:30 AM11:30 AM11:45 AM
7
8
911:45:00 AM
10
Sheet2
 
Upvote 0

Forum statistics

Threads
1,203,137
Messages
6,053,708
Members
444,681
Latest member
Nadzri Hassan

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