Q: Numbers: Drop-down menu choice
For numbers.
I'm creating a database and in one of the column there's going to be a dropdown menu made with a few choices to pick from. When picking one of the choices, I'd like for that line to be copied and added to another tab (page 2).
Is this possible to do?
MacBook Air, iOS 9.3.4
Posted on Sep 11, 2016 11:10 AM
Hi pmc,
Here is an approach that uses an index column in the original table. The index can be hidden.
D2= C2&COUNTIF(C$2:C2,C2)
Then we use that index to bring the info over according to the row #.
A2= INDEX(Table 1::A,MATCH($C$1&ROW(cell)−1,Table 1::$D,0))
This looks for a match of C1 and the row minus 1 in the index column and returns the value found in column A. When you fill it down and across it will bring those values also. I could have filled in column C but it seemed redundant.
This will throw an error when there are more rows than types. I would use a filter to hide those.
quinn
Posted on Sep 15, 2016 8:03 AM


