简体   繁体   English

Excel:值表1(在表2中查找)将值复制到单元格旁边

[英]Excel : Value Sheet 1 (Find at Sheet 2) Copy the Value next to the cell

Anyone can help me on VBA or Excel commands. 任何人都可以在VBA或Excel命令上为我提供帮助。
I have 10,000 of data which have an ID and Value. 我有10,000个具有ID和值的数据。

I have 2 Sheet of Data. 我有2个数据表。

  1. First Sheet: ID and Value but unordered. 第一张:ID和值,但无序。
  2. Second Sheet : Control Sheet have ID and Data. 第二页:控制页具有ID和数据。

I want to ask how can I copy the ID at first sheet and find the same ID at second sheet and copy the value (let's say next to the copied cell) and paste at the second sheet next to the same ID. 我想问我如何在第一张纸上复制ID,并在第二张纸上找到相同的ID,然后复制值(在复制的单元格旁边说),然后在第二张纸上粘贴同一ID旁边。

Sounds similar to this question and answer where it sounds like you can use a standard vlookup formula. 听起来像是这个问题和答案 ,听起来像您可以使用标准的vlookup公式。

Assuming the id values are in Column A on both sheets, and the values are in Column B on both sheets, in Column C of the second sheet use: 假设id值在两张纸的Column A ,并且values在两张纸的Column B Column C中,第二张纸的Column C中使用:

=VLOOKUP(A:A,Sheet1!A:B,2,FALSE)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Excel根据单元格值复制到特定工作表 - Excel copy to specific sheet depending on cell value Excel如果单元格&lt;=值,如何将数据行从工作表1复制到工作表2 - Excel how copy row of data from sheet 1 to sheet 2 if a cell <= Value 复制并粘贴 excel 表,要在代码中引用的表单元格数据的值 - Copy and Paste a excel sheet , Value of Sheet Cell Data to be referenced in code VBA到vlookup值并将下一个单元格值复制到发票表 - Vba to vlookup value & copy next cell value to invoice sheet excel宏,用于调用复制在下一张工作表上的下一个单元格值 - excel macro for to call next cell value copied on the next sheet 将工作表的副本命名为原始工作表中单元格中的值 - Name a copy of a Sheet the value in a cell in original sheet 根据单元格值查找行,仅将行的一部分复制到新表中,将其余部分复制到新表的下一行中 - Find a row based on a cell value, copy only part of the row in to a new sheet and the rest of the row into the next row of the new sheet 在合并列旁边获取Excel工作表单元格值 - Getting Excel sheet cell value next to a merged column 用于在每个副本的一个单元格中打印具有不同值的Excel工作表的宏 - Macro for printing of excel sheet with different value in one cell for each copy 根据对一个单元格值的搜索将新行复制到 Excel 工作表中 - Copy new rows into excel sheet based on search on one cell value
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM