Forum Discussion
Pemory0427
Apr 27, 2023Copper Contributor
Help with VLookup
I'm trying to figure out how to write a proper VLOOKUP function that allows me to pull the proper multiplier from the table below based upon the user's dropdown selections for "Year" and "Asset Type"...
- Apr 27, 2023
=INDEX($B$2:$G$12,MATCH($B$15,$A$2:$A$12,0),MATCH($B$16,$B$1:$G$1,0))You can try INDEX and MATCH. There are dropdowns in cell B15 and B16 in the attached file.
OliverScheurich
Apr 27, 2023Gold Contributor
=INDEX($B$2:$G$12,MATCH($B$15,$A$2:$A$12,0),MATCH($B$16,$B$1:$G$1,0))You can try INDEX and MATCH. There are dropdowns in cell B15 and B16 in the attached file.
Pemory0427
Apr 28, 2023Copper Contributor
This works perfectly. Thank you for your help with this ! OliverScheurich