Show a range off a drop down menu
Solved/Closed
Brazell
-
May 19, 2011 at 08:13 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - May 20, 2011 at 09:28 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - May 20, 2011 at 09:28 AM
Related:
- Show a range off a drop down menu
- Show volume in menu bar mac - Guide
- Huawei test menu - Guide
- Hasee laptop boot menu key - Laptop Forum
- Connex laptop boot menu key - Guide
- Add winmerge to right click menu - Guide
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
May 19, 2011 at 09:43 AM
May 19, 2011 at 09:43 AM
Hi Brazell,
To do this you need to create 3 lists:
List 1:
Hamburgers
Pizza
List 2:
Hamburger
Cheeseburger
Turkey burger
List 3:
Cheese
Pepperoni
Meat lovers
Vegetarian
Now select list 2. Now look above the letter A of column A. It will show you the top cell of your selected list (If the range of your list is A3:A5, it will show A3.).
Change it to Hamburgers.
Do the same for list 3 but now name it Pizza.
Now on to the actual validation.
Select a cell, let's say A1. Goto top menu > data > validation.
Choose list and select the range of list 1.
Now goto the cell where you want to put your second drop down list.
Goto top menu > data > validation.
Choose list and type in this formula: =INDIRECT(A1)
If A1 is empty a question will pop up, answer with yes.
And done you are.
Best regards,
Trowa
To do this you need to create 3 lists:
List 1:
Hamburgers
Pizza
List 2:
Hamburger
Cheeseburger
Turkey burger
List 3:
Cheese
Pepperoni
Meat lovers
Vegetarian
Now select list 2. Now look above the letter A of column A. It will show you the top cell of your selected list (If the range of your list is A3:A5, it will show A3.).
Change it to Hamburgers.
Do the same for list 3 but now name it Pizza.
Now on to the actual validation.
Select a cell, let's say A1. Goto top menu > data > validation.
Choose list and select the range of list 1.
Now goto the cell where you want to put your second drop down list.
Goto top menu > data > validation.
Choose list and type in this formula: =INDIRECT(A1)
If A1 is empty a question will pop up, answer with yes.
And done you are.
Best regards,
Trowa
May 19, 2011 at 12:22 PM
But if A1=Pizza B1, B2, B3, and B4 will change to cheese, pepperoni, meat, vegetarian. then be able to change them back.
May 20, 2011 at 09:28 AM
B1: =IF(A1="Hamburgers","Hamburger","Cheese")
B2: =IF(A1="Hamburgers","Cheeseburger","Pepperoni")
B3: =IF(A1="Hamburgers","Turkey burger","Meat")
B4: =IF(A1="Hamburgers","","Vegetarian")
Best regards,
Trowa