So I have two sheets - SheetA and SheetB.
Sheet B contains a dropdown list [Option1/2/3] and another cell that changes its value accordingly to what option is chosen from the dropdown list.
In SheetA, I would like to list down all options - 1,2,3 and their respective values referenced from SheetB.
<Sheet B>
Drop-down List Options CellX
====================== ======
Option 1/2/3 10/20/30 (depending on the option chosen)
<Sheet A>
Options Value
======== ======
1 10
2 20
3 30
My thought process: If SheetA!Options=1, Value=SheetB!CellX If SheetA!Options=2, Value=SheetB!CellX
Is there any way I can autoselect the dropdown list values and return the values in SheetA?