Dropdown menus dependent on another cell being <8.0 or >8.0

Caitlin535

New Member
Joined
Jan 8, 2016
Messages
21
Hello -
I've created a timesheet for my employees in Excel. I'd like there to be one particular dropdown menu that shows if the total hours for a day are less than 8.0, and another dropdown to show if the hours are more than 8.0. I know how to do dependent lists, but not how to make a list dependent on a numerical value . . .
Thanks!
Caitlin
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
You did not say what happens to 8, so I assume it goes with Less than 8

Same trick as dependent dropdown, but use an extra column to convert values to text

Formula in C2 copied down
=IF(A2<=8,"Less","More")

Create 2 named ranges ("Less" and "More")
Less (range: F2:F4)
More (range: G2:G4)

Create dropdown in D2 (and copy down)
Allow: List
Source: =INDIRECT(B2)



Excel 2016 (Windows) 32 bit
A
B
C
D
E
F
G
H
1
Hours formula C2 copied downDropdownLessMore
2
8​
Less=IF(A2<=8,"Less","More")BAX
3
7.9​
LessCBY
4
8.1​
MoreYCZ
5
Sheet: Sheet1
 
Upvote 0
:oops:
Previous post should read
Formula in B2 copied down
=IF(A2<=8,"Less","More")
 
Upvote 0

Forum statistics

Threads
1,214,392
Messages
6,119,255
Members
448,879
Latest member
oksanana

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