I am trying to use vlookup
in Google Sheets to populate my price data in my inventory database called "Food Inventory". The data I am looking to match is the "description" which is the A column in all three sheets.
I have a price data sheet with a named range pricedata
and an Old Price Data sheet with a named range oldprice
.
I would like to find the most current price data and if there is no match look in the Old price data sheet.
Here is the formula I am using which is not working:
=VLOOKUP(A3,PriceData,4,0),VLOOKUP(A3,oldprice,4,0)
I would prefer not to use array formulas, if possible.