Ok I'm stumped here. The answer has to be something really stupid to evade me so well.
I have a workbook that has several tabs with items across the top, and my stores down the left side. The data cells look up the item values (text) in a separate worksheet for each store. Folks at the stores have a sheet that has the items listed, and they key in the number of each item they want mailed to them.
This method has been working for years.
We added a new item, and now it's not working for this item unless the store form is open (not the best solution, I would like to avoid opening each file every week to update this.)
The formulas for the lookups are as follows:
$D$63 on the store forms is the current date, which they key in
I've changed this to a Vlookup, because I've heard somewhere that Index/Match doesn't work on external files. Vlookup also does not work, furthermore, Index/Match works for the other items.
So I figured it was something to do with the item name which I'm looking up.
The cell text is exactly the same (copy/paste special values)
The formats are the same.
I copied the format from a different item on both the main sheet and the store forms.
Any ideas?
I have a workbook that has several tabs with items across the top, and my stores down the left side. The data cells look up the item values (text) in a separate worksheet for each store. Folks at the stores have a sheet that has the items listed, and they key in the number of each item they want mailed to them.
This method has been working for years.
We added a new item, and now it's not working for this item unless the store form is open (not the best solution, I would like to avoid opening each file every week to update this.)
The formulas for the lookups are as follows:
Code:
=IF('Z:\Path\[file.xls]Store Order Form'!$D$63<NOW()-7,0,INDEX('Z:\Path\[file.xls]Store Order Form'!$A$1:$A$65536,MATCH(M$1,'Z:\Path\[file.xls]Store Order Form'!$C$1:$C$65536,0)))
I've changed this to a Vlookup, because I've heard somewhere that Index/Match doesn't work on external files. Vlookup also does not work, furthermore, Index/Match works for the other items.
So I figured it was something to do with the item name which I'm looking up.
The cell text is exactly the same (copy/paste special values)
The formats are the same.
I copied the format from a different item on both the main sheet and the store forms.
Any ideas?