use if statement in excel formula to populate adjacent from list?

  • Thread starter Thread starter Larry 44
  • Start date Start date
L

Larry 44

Is it possible to create a formula using an if statement to populate an
adjacent cell from a list/dropdown of text?
 
The IF statement would have to be in the adjacent cell. Formulas cannot
push results to another cell.

How many items to choose from in the dropdown?

If many, probably best to go with a lookup table and a VLOOKUP formula in
the adjacent cell.

If only a few you could use something like this.

=LOOKUP(B1,{"one","two","three","four"},{"A","B","C","D"})


Gord Dibben MS Excel MVP


On Sun, 7 Dec 2008 12:18:08 -0800, Larry 44 <Larry
 
Back
Top