Referencing other cells
Cell to Cell:
=A1
Cell to Sheet:
=Sheet1!A1
Cell to workbook:
=[VendorSheet.xls]Sheet1!A1
If you want to mimic the exact layout of the VendorSheet in your sheet somewhere, this is a way to do it.
Not having seen what you're talking about letting them update, it doesn't have to be so mundane. You could give them a list with Product Number, Product Names and Product prices to keep updated. Then if you already have the Product Numbers in your sheet, you can use INDEX(MATCH() formulas to pull over the product desc and prices regardless of where they are in the vendor sheet.
You sheet:
Give him his sheet with product codes in the first column. Now, he can sort his sheet any way that makes sense to him, and you can use this formula B2 of your sheet to bring over the Product Desc for the first code found in A2:
=INDEX([VendorList.xls]Sheet1!$B$2:$B$1000,MATCH(A2,[VendorList.xls]Sheet1!$A$2:$A$1000,0)
And the price in C2 is brought over the same way:
=INDEX([VendorList.xls]Sheet1!$C$2:$C$1000,MATCH(A2,[VendorList.xls]Sheet1!$A$2:$A$1000,0)
No matter where AA-12345 is found in the vendorlist.xls column A, the MATCH will find it, and the INDEX will bring over the associated indexed column value.
Bookmarks