0
votes

I want to populate a cell depending upon the drop down selection. How can i do it? The drop down list is created manually in the sheet.

EDIT: I have a column where every cell is a drop-drown. Depending upon what i select in the drop-down, the adjacent cell should get populated with a value.

2
This is awfully unclear. Please show us what you already have and what want to have. - Jean-François Corbett

2 Answers

3
votes

Lets say you have a dropdown box in A1 allowing values 1,2, or 3, and you want B1 to show "A", "B", or "C" accordingly. Just type the formula

=IF(A1=1,"A",IF(A1=2,"B",IF(A1=3,"C","-")))

into B1. Of course, this works also when you have no dropdown box in A1.

0
votes

Have a look on Vlookup and Index Match they are usually easier to create and mantain than nested If . If you need examples let me know