A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I am not sure how to link the Drop down box to a cell, can you help me with that?
I thought that must have already had the DropDown linked to a cell with the problem you had. Have you sorted the problem yet?
To set the linked cell, right click the DropDown combo and select Format control -> Control tab.
The Input range for the list is the first field and the second field is the Cell link. Just click the icon at the right of the Cell link field, select the cell that you want to link, click the icon at the right of the displayed field and then OK.
The linked cell only displays the numeric Index of the selected item; not the actual item value. To get the actual value you need to insert a formula in the cell beside the linked cell and use the Offset function to find the actual value from the Input range. See the screen snippet below where:
A2:A12 is the Input range for the DropDown.
B4 is the linked cell showing the 7th item is the list is selected.
Formula in cell C4 is: =OFFSET(A2,B4-1,0,1,1)
Note that with the Offset function the number of rows to offset is the number of times you would need to press the Down arrow to get to it from the Reference which is A2 and hence B4-1 because although it is the 7th item in the list, if the selected cell is A2 then the down arrow only needs to be pressed 6 times to get to the 7th cell in the list.