I currently have a workbook with over 50,000 rows of data based on color, make, model, package, year and price of cars and I'm using an array formula to retrieve price based on multiple criteria. The formula works perfectly when all information is in one workbook, but the array formula does not work when I separate the data in one workbook and the formula in a different workbook. Is there an alternative method to write the formula so I can leave the data set in a separate workbook?
Here is the data set format:
Column A - Color
Column B - Make
Column C - Model
Column D - Package
Column E - Year
Column F - Price
Example output (user selects the combinations):
Cell J2 - Red
Cell K2 - Ford
Cell L2 - Mustang
Cell M2 - GT
Cell N2 - 1967
Formula below = $25,000
Here is the formula:
Here is the data set format:
Column A - Color
Column B - Make
Column C - Model
Column D - Package
Column E - Year
Column F - Price
Example output (user selects the combinations):
Cell J2 - Red
Cell K2 - Ford
Cell L2 - Mustang
Cell M2 - GT
Cell N2 - 1967
Formula below = $25,000
Here is the formula:
Code:
{=INDEX($F$:$F$,MATCH(1,(J2=$A$:$A$)*(K2=$B$:$B$)*(L2=$C$:$C$)*(M2=$D$:$D$)*(N2=$E$:$E$),0))}