MrExcel Message Board

Go Back   MrExcel Message Board > Question Forums > Excel Questions

Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only.

Reply
 
Thread Tools Display Modes
Old Mar 14th, 2002, 03:46 PM   #1
Guest
 
Posts: n/a
Default

I want to create several drop down lists
some that rely on the selection from another
drop down list. To simplify please follow:

Upon selecting a choice from a list in cell #A1, I would like another list to choose from in a different cell, say A2. ie if I choose another selection from the first list in A1 mentioned, a different list appears in the second cell A2. Is this possible? How? Help!


SECOND QUESTION

I want to select a choice from a drop down list, and have that choice multiplied by the value in a different cell, but put the calculated answer in the same cell as the drop down list Is this possible ? HELP!
  Reply With Quote
Old Mar 14th, 2002, 03:58 PM   #2
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

Quote:
On 2002-03-14 14:46, Anonymous wrote:
I want to create several drop down lists
some that rely on the selection from another
drop down list. To simplify please follow:

Upon selecting a choice from a list in cell #A1, I would like another list to choose from in a different cell, say A2. ie if I choose another selection from the first list in A1 mentioned, a different list appears in the second cell A2. Is this possible? How? Help!


SECOND QUESTION

I want to select a choice from a drop down list, and have that choice multiplied by the value in a different cell, but put the calculated answer in the same cell as the drop down list Is this possible ? HELP!
Concerning the first question:

The list in A1 should consists of items/names each of which must refer lists of different items.

If that is the case, you can use the List option in A2 with

=INDIRECT(A1)

as source.

Regarding the second question:

I'd use different cell where you multiply the selection from a data validation cell with a target cell (also in order to safegurad the integrity of data validation you apply).
Aladin Akyurek is offline   Reply With Quote
Old Mar 14th, 2002, 04:08 PM   #3
Guest
 
Posts: n/a
Default

Quote:
On 2002-03-14 14:58, Aladin Akyurek wrote:
Quote:
On 2002-03-14 14:46, Anonymous wrote:
I want to create several drop down lists
some that rely on the selection from another
drop down list. To simplify please follow:

Upon selecting a choice from a list in cell #A1, I would like another list to choose from in a different cell, say A2. ie if I choose another selection from the first list in A1 mentioned, a different list appears in the second cell A2. Is this possible? How? Help!


SECOND QUESTION

I want to select a choice from a drop down list, and have that choice multiplied by the value in a different cell, but put the calculated answer in the same cell as the drop down list Is this possible ? HELP!
Concerning the first question:

The list in A1 should consists of items/names each of which must refer lists of different items.

If that is the case, you can use the List option in A2 with

=INDIRECT(A1)

as source.

Regarding the second question:

I'd use different cell where you multiply the selection from a data validation cell with a target cell (also in order to safegurad the integrity of data validation you apply).
thanks. Q. In regards to a list that refers to another list. How do I do this?

#2 You suggest to use different cell. I have gone this way, but is there a way to put the answer in the same cell?
  Reply With Quote
Old Mar 14th, 2002, 04:29 PM   #4
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

Quote:
On 2002-03-14 15:08, Anonymous wrote:
Quote:
On 2002-03-14 14:58, Aladin Akyurek wrote:
Quote:
On 2002-03-14 14:46, Anonymous wrote:
I want to create several drop down lists
some that rely on the selection from another
drop down list. To simplify please follow:

Upon selecting a choice from a list in cell #A1, I would like another list to choose from in a different cell, say A2. ie if I choose another selection from the first list in A1 mentioned, a different list appears in the second cell A2. Is this possible? How? Help!


SECOND QUESTION

I want to select a choice from a drop down list, and have that choice multiplied by the value in a different cell, but put the calculated answer in the same cell as the drop down list Is this possible ? HELP!
Concerning the first question:

The list in A1 should consists of items/names each of which must refer lists of different items.

If that is the case, you can use the List option in A2 with

=INDIRECT(A1)

as source.

Regarding the second question:

I'd use different cell where you multiply the selection from a data validation cell with a target cell (also in order to safegurad the integrity of data validation you apply).
thanks. Q. In regards to a list that refers to another list. How do I do this?

#2 You suggest to use different cell. I have gone this way, but is there a way to put the answer in the same cell?
#1 Make a 1-column list, say, consisting of e.g.,

List1
List2
List3

Select the range where you put this list name it MainList via the Name Box on the Formula Bar.

Make a 1-column list, say, consisting of

a
b
c
d

Select this range and name it List1. Do the same for List2 and List3.

The point is that MainList consists of names that refer to definite ranges which contain items for selection.

In A1 you select 'List' for Allow in the data validation window and enter as source:

=MainList

In A2, you select again 'List' for Allow in the data validation window and enter as source:

=INDIRECT(A1)

#2 I guess it can be done with VBA (others might want to help you on this), but I still think it should not be done the way you want in view of integrity of data validation. I'd be confused when I enter or select say in D1 10 and it suddenly becomes 70 -- another reason for not to.
Aladin Akyurek is offline   Reply With Quote
Old Mar 14th, 2002, 04:49 PM   #5
Joe Was
MrExcel MVP
 
Joe Was's Avatar
 
Join Date: Feb 2002
Location: Central Florida, USA
Posts: 7,541
Default

The first code is manual the second is automatic.

Sub BuildList()
'By Joe Was
myState = "=" & Worksheets("Sheet1").Range("B1").Value
With Worksheets("Sheet1").Range("D1").Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:= _
xlValidAlertStop, Operator:=xlBetween, Formula1:=myState
.IgnoreBlank = True
.InCellDropdown = True
.ShowInput = False
.ShowError = False
End With
End Sub



Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Not Intersect(Target, Range("B1")) Is Nothing Then
myState = "=" & Worksheets("Sheet1").Range("B1").Value
With Worksheets("Sheet1").Range("D1").Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:= _
xlValidAlertStop, Operator:=xlBetween, Formula1:=myState
.IgnoreBlank = True
.InCellDropdown = True
.ShowInput = False
.ShowError = False
End With
Else
myState = "=" & Worksheets("Sheet1").Range("B1").Value
With Worksheets("Sheet1").Range("D1").Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:= _
xlValidAlertStop, Operator:=xlBetween, Formula1:=myState
.IgnoreBlank = True
.InCellDropdown = True
.ShowInput = False
.ShowError = False
End With
End If
End Sub

To use the code!
Select an item in the dropdown in B1 (Like the: "State")
H column contains the list names for the lists in columns I, J & K, H would be the State list range name for the City list in column I, J & K or more column?
The list selected in B1 will set the dropdown values of D1 (Like the "Cities" in your selected State")

So you have one dropdown in B1 and the other in D1. When you select from the dropdown in B1 your selection loads the range name for the list used for the dropdown in D1. My test is B1 is three States and D1 is the Cities in that selected State. Hope this helps? JSW

P.S. The Private Sub automatically checks for a change in B1,s value and runs the macro to update D1.

Joe Was is offline   Reply With Quote
Old Mar 14th, 2002, 11:18 PM   #6
nisht
Board Regular
 
Join Date: Feb 2002
Location: Ahmedabad Gujarat
Posts: 303
Default

Friend,
I have one file uploaded at

http://www.pexcel.com/download.htm

here you download file

changingcombo.zip

You can study the code.

i hope this was what exactly you wanted.

i had made this combobox for a friend and has uploaded as example file.
nisht
http://www.pexcel.com
nisht is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 07:58 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
All contents Copyright 1998-2012 by MrExcel Consulting.
diabetic desserts recipes recipes Diabetic Soups Holiday Pizza Recipes Popcorn Recipes Recipes For Microwave Pasta Recipes Casserole Recipes Chili Recipes Curry Recipes Crockpot Recipes Apples Recipes Bread Recipes Vegetarian Recipes Vegetable recipes Desserts Recipes Appetizers Ethnic Recipes Meat Dishes Barbecue Recipes Sauces Recipes Marinade Recipes Low Fat Recipes Frugal Gourmet Kitchen Classics Recipes On The Grill Cook Books Seafood Recipes Cajun Recipes Breads Low Fat Low Fat Breads Bread Machine Recipes Yeast Breads Quick Breads Fat Free Vegetarian Salad Recipes Eggplant Recipes Radish Recipes Tomato Recipes Jalapeno Recipes Potato Recipes Lettuce Recipes Cabbage Recipes Beans Ambrosia Recipes Biscotti Recipes Desserts Low Fat Cookie Recipes Cheesecake Recipes Cake Recipes Pie Recipes Muffin Recipes Custard Recipes Best Appetizers Appetizers Low Fat Salsa Recipes Dip Recipes International Recipes Afghan Recipes Alaska Recipes French Recipes German Recipes Greek Recipes Italian Recipes Spanish Recipes Thai Recipes Korean Recipes Chinese Recipes Mexican Recipes Indian Recipes Beef Recipes Pork Pork & Ham Pork Butts Pork Chop Recipes Pork Ribs Rulled Pork Poultry Recipes Stews Recipes Ground Beef Barbecue Grill Barbecue Smoker All Purpose Sauce BBQ Sauce Barbecue Sauce Carolina BBQ Sauce Pickle Recipes Marinades Smoking Low Fat Appetizers & Dips Low Fat Breakfast Low Fat Cakes Low Fat Cheesecakes Low Fat Cookies Low Fat Desserts Low Fat Fish & Seafood Low Fat Meats Low Fat Pasta Low Fat Pies Low Fat Salads Low Fat Sandwiches Low Fat Sauces & Condiments Low Fat Sides Low Fat Soups Low Fat Vegetarian Baker's Dozen Taste of Home Recipe Book Bon Appetit Cookbook Blacktie Cookbook Buster Cook Book Cookbook USA Cook Book Cook Book Sara's Cookbook Sara's Cookbook Appetizers and Dips Poultry recipes Diabetic recipes Holiday recipes Miscellaneous recipes 110 recipes 1986 Usenet cookbook 2900 recipes Cyberrealm recipes Great sysops of world Specialty recipes Ceideburg recipes Cheese recipes Chili recipes Fruits recipes Garlic recipes Great chefs of NY Londontowne recipes Raisins recipes Recipes for kids US Food Vegetarian recipes Bread recipes Drinks Meat Dishes Brisket recipes Caribou recipes Chicken recipes Filet mignons recipes Pork recipes Swordfish recipes Turkey recipes Pasta recipes Uncategorized recipes Ethnic recipes Canada recipes English recipes Ethiopia recipes Germany recipes Greece recipes Mexican recipes Philippines recipes Welsh recipes Microwave recipes Soups recipes Vegetable recipes Asparagus recipes Barley recipes Brown rice recipes Lentil recipes Mushrooms recipes Salads recipes Wild rice Desserts recipes Cakes recipes Chocolate recipes Cookies recipes Ice cream recipes