我需要匹配和传输值的两张数据。
前两列1A& 1B
第1A栏包含所有唯一编号(这些是我们向客户开具的发票编号) 当我们收到这些工作的付款时,第1B栏包含收入。
第二列2A& 2B
我已经开始扫描检查报告并将数据转移到一个简单的两列Excel工作表(2A和2B)中A列包含也包含在第1A列中的发票编号,第2B列包含我想要的数据对于列1A和1A之间的每个相应匹配,转移到列1B中。 2A。
我做了一些挖掘,似乎无法找到解决问题的简单方法。
答案 0 :(得分:0)
VLOOKUP是解决方案。执行此操作的公式将进入表1,Col B,第2行(假设第1行中有标题)。
=VLOOKUP(A2, sheet2!A:B,2,false)
公式就是这样
VLOOKUP(lookup_value,table_array,col_index_num,range_lookup)
-lookup_value = a cell you want to lookup
-table_array = a range of columns with the lookup column in col1
-index_num = the column you want to return as an int ( in this case column 2)
-range_lookup = should be false to ensure an EXACT match