合并数据集

问题描述

问题陈述:我在sheet1和sheet2中有数据。我需要根据两个数据集都提到的唯一ID(UID)合并这些数据。我需要在sheet1数据集中合并“ Reviewer”和“ local”数据。我尝试了Vlookup,但对我不起作用。下面是图片提及的数据集1和数据集2,预计最终输出

enter image description here

解决方法

要执行此操作,必须在数据集2中使用Vlookup,并使用Vlookup为要从数据集1中获得的每个数据创建新列。 我的excel的语言是葡萄牙语,该图显示的格式为PROCV,而英语为VLOOKUP。

= VLOOKUP($ I3,$ A $ 3:$ E $ 100,2,FALSE)

enter image description here

enter image description here

将所有数据收集到数据集2中之后,从数据集2中选择所有数据,然后通过按所需方式对数据进行排序来创建数据透视表。

enter image description here