-1

I have the below source data(the original data has thousands of rows)

Form  field 
Form1 field11
Form1 field12
Form2 field21
Form2 field22

In a separate sheet, I want to have 2 dropdown lists in field A1 and B1.

The drop-down list in A1 should populate the list of forms eg Form1, Form2 ,etc.

The drop-down list on B1 should populate the field based on selection from A1.

For ex if Form 1 is selected in A1 ,B1 should populate field 11 and field 12 in drop-down list.

Aswath
  • 811
  • 7
  • 20
Brian
  • 159
  • 2
  • 5
  • 16

1 Answers1

0

screenshots (in reverse order) and function (1st step, bottom)/sheet here refer:

4] Result

Desired outcome: Dependent 2nd field

3] Validation list 'selected cells' relies upon named range:

Named range 'field_selected'

Named range (Main Ribbon: Formulas, Name Manager....

(make sure to include # at end to extend to bottom of spill range - assumes you have Excel as part of Office 365 package)

2] Additional spill range specified in cell F4 as follows:

Filter function, dependent upon first validation cell (selection: H2)

1] Filter function:

=FILTER(E4:E7,D4:D7=H3)
JB-007
  • 2,156
  • 1
  • 6
  • 22