Forum Discussion

MikeInThe901's avatar
MikeInThe901
Copper Contributor
Jan 30, 2021
Solved

Help w Drop Down Formula

Trying to set up a drop down menu in A2 that populates B2 with a value. When the user chooses one of the drop-down options in cell A2, I want the value in the cell adjacent to their choice (either...
  • Shane_Devenshire's avatar
    Jan 30, 2021

    There are innumerable options, here are three using your data:

    =LOOKUP(A2,A6:B8)

    =VLOOKUP(A2,A6:B8,2)

    =XLOOKUP(A2,A6:A8,B6:B8)

     

    You might also work with INDEX/MATCH or INDEX/XMATCH

     

    Shane Devenshire

Resources