Okay. I have a SKU in column B in Sheet1, and the price in column A in Sheet1. I also have a few thousand of these SKUs in Sheet2, column A, and their respective prices in Sheet2, column B.
I'm trying to do a VLOOKUP to look inside sheet2 for the sku and their price. If the SKU exists, return it's new price, and if the SKU doesn't exist, return the original price from sheet1, columnA. And if it's a blank cell, return "DELETE".
If anyone could tell me the formula to do this you'll be my all time hero.
=IFERROR(VLOOKUP(B1,Sheet2!A:B,2,0),IF(A1<>"",A1,"DELETE"))
. Let us know if it helps – Dmitry Pavliv