wrightlefty
Technical User
The spreadsheet function is to "build" a motor with different options available to the user. The first pulldown combo box has a list of series (1series, 2series, 3series, etc.). The user has the option to select a desired series, and the next pulldown box should have options available depending on what was selected in the first box. There are roughly 15 different options that will be dependant on what is first selected.
I have named each list relevant to the option (i.e. 1Shaft, 2Shaft, 3Shaft,etc.; 1frame, 2frame, 3frame, etc.). When the user chooses series list 2series, separate list boxes should then be filled with the info from 2shaft, 2frame, etc. I am able to populate cell C4 using validation by inserting the following function into the validate command:
=CHOOSE($C$3,1Frame,2Frame,3Frame,etc.)
where C3 is defined by: =MATCH(B3,Series,0)
where B3 is defined by: LinkedCell definition from Series
Combobox
All I need to do now is tie the validated list info from C4 into a listbox. The reason for this listbox vs. just using a cell with validation pulldown list is for user simplicity.
I am trying to avoid VB code and macros in the creation of this spreadsheet, but am open to their use if need be. Thanks for all of your help!
I have named each list relevant to the option (i.e. 1Shaft, 2Shaft, 3Shaft,etc.; 1frame, 2frame, 3frame, etc.). When the user chooses series list 2series, separate list boxes should then be filled with the info from 2shaft, 2frame, etc. I am able to populate cell C4 using validation by inserting the following function into the validate command:
=CHOOSE($C$3,1Frame,2Frame,3Frame,etc.)
where C3 is defined by: =MATCH(B3,Series,0)
where B3 is defined by: LinkedCell definition from Series
Combobox
All I need to do now is tie the validated list info from C4 into a listbox. The reason for this listbox vs. just using a cell with validation pulldown list is for user simplicity.
I am trying to avoid VB code and macros in the creation of this spreadsheet, but am open to their use if need be. Thanks for all of your help!