I have cells that list the following
**MyList**
1 green
2 blue
3 red
4 yellow
5 special
6 special
And I have a Specials list defined as special
**Special**
apple
banana
grapes
I have the a formula that looks for a match and displays its value in a drop down so if 2 is listed in the left-most column blue would be the only drop down selection.
=INDEX($A$15:$B$20,MATCH($E20,$A$15:$A$20,0),2)
But the drop down for cells with 5 and 6 say 'special' it does not drop down the defined list name(special) contents.
How can I include a defined name in this formula?