-1

Please help me to sort this data in a single column with table headers as drop downs and when selecting the drop down menu appropriate data should be loaded below that header. enter image description here

Progman
  • 16,827
  • 6
  • 33
  • 48
Gopakumar
  • 5
  • 1
  • Post data as text table so that we can copy or share a workbook. Also show what output you desire. – Harun24hr Jun 11 '22 at 15:11
  • Welcome to [Stack Overflow](https://stackoverflow.com/tour). Also consider sharing a publicly editable [sample spreadsheet](https://webapps.stackexchange.com/a/138383/269219). – doubleunary Jun 11 '22 at 15:15

1 Answers1

0

There are few ways to do that. You can try INDEX()/MATCH() formula.

=INDEX(A3:C5,,MATCH(G2,A2:C2,0))

enter image description here

Harun24hr
  • 30,391
  • 4
  • 21
  • 36