expos4ever
New Member
- Joined
- Jun 26, 2015
- Messages
- 38
I will illustrate my challenge by way of a simple example. Suppose I have a list of 25 baseball player names (A1 through A25) on sheet 2. Suppose, further, that I create a "yes-no" drop down in each cell in the range B1:B25 (sheet 2) - this lets me choose which players go in today`s lineup. On another sheet (sheet 1), I use a trick I learned from someone to present a single (column-based) list of the players I have selected for today's lineup with no "blanks" - one single column identifying all players with a "yes" from the first sheet.
This trick is based on the use of a formula that I found (uses INDEX, SMALL, ROW functions). Here is the formula for my actual problem (the baseball player thing is a simplified example):
=IFERROR(INDEX(Sheet2!$D$1:$D$4,SMALL(IF(Sheet2!$B$1:$B$4<>Sheet2!$E$1,ROW(Sheet2!$D$1:$D$4)),ROW(Sheet2!1:1)),1),"")
With this as background and returning to the baseball example, I would like to have sheet 1 make another drop-down list available for each selected player (e.g. what position they will play); I can then make the appropriate position selections on sheet 1. I think the way to do this is to create a column of 25 cells with this new "position" drop down list of sheet 2, and then figure out how to selectively copy the position drop-down list (to sheet 1) for only those players selected to go in the line-up. Hope that is clear.
In short, I fear that it is impossible to copy a drop down list (the list itself, not a selection from that list) from one cell to another using a formula.
Any advice appreciated.
This trick is based on the use of a formula that I found (uses INDEX, SMALL, ROW functions). Here is the formula for my actual problem (the baseball player thing is a simplified example):
=IFERROR(INDEX(Sheet2!$D$1:$D$4,SMALL(IF(Sheet2!$B$1:$B$4<>Sheet2!$E$1,ROW(Sheet2!$D$1:$D$4)),ROW(Sheet2!1:1)),1),"")
With this as background and returning to the baseball example, I would like to have sheet 1 make another drop-down list available for each selected player (e.g. what position they will play); I can then make the appropriate position selections on sheet 1. I think the way to do this is to create a column of 25 cells with this new "position" drop down list of sheet 2, and then figure out how to selectively copy the position drop-down list (to sheet 1) for only those players selected to go in the line-up. Hope that is clear.
In short, I fear that it is impossible to copy a drop down list (the list itself, not a selection from that list) from one cell to another using a formula.
Any advice appreciated.