Mar 21 2023 04:22 PM - edited Mar 21 2023 04:23 PM
I am trying to find the correct formula with the following details:
On Sheet 1, I want to find what the price should be, based on 2 things:
1. Sheet 1 - A drop down with 2 options ("Roanoke" or "Lineage") in cell D29; and
2. The item # in D21 (Sheet 1); (List of Item #s are on Sheet 2, Column B)
On Sheet 2, I have 2 columns: 1 says "Roanoke", and 1 says "Lineage"
Based on the item # (Manually entered on Sheet 1 - D21) and based on which drop down is chosen (Roanoke or Lineage) - Sheet1:
WHAT IS THE FORMULA TO LOOK UP THE PRICE ON SHEET 2 under Columns T and U (Lineage and Roanoke, respectively) based on the drop down chosen and the Item # Manually entered on Sheet1 D21?
Mar 21 2023 05:07 PM
Use Index and Match Functions:
=IFERROR(INDEX(Sheet2!T2:U6,MATCH(D21,Sheet2!B2:B6,0),MATCH(D29,Sheet2!T1:U1,0)),"NoPrice")
Mar 22 2023 05:50 AM
@FikturFox - Unfortunately, this did not work.
D29 is a text, not a number so I'm wondering if that's the issue?
Mar 22 2023 05:51 AM
Mar 22 2023 04:51 PM
Mar 23 2023 07:11 AM