I am having trouble using VLOOKUP within two different excel files (Not two sheets).
- One File contain the terminal Log with dates, Product name and Output (Calculated).
- The other file contain total analyzed about the same product name and all.
I want to include those output (Calculated) from 1st workbook to 2nd workbook. Note that they contain same product name under title "商品名".
What I have tried:
VLOOKUP([1stfile!productname,1stfile!$productname$1:ProductnameEndcolumn,5,0)
All i get is same number "616" in the whole column.
Actual Code:
=VLOOKUP(Trn.txt!$I$1,Trn.txt!$I$1:$M$7216,5,0)
Here Trn.txt is firstfile
I1 is the column where it contains product name
m7216 is End point of product name column
5 is the Output(Calculated)column which I want
0 False = Exact Match
I only get the product value of 1st product which is 616. And when I Ctrl+click drag to bottom, every cell has same value 616.