如何制作搜索具有特定数据的单元格的 Excel 脚本/宏?

如何制作搜索具有特定数据的单元格的 Excel 脚本/宏?

有需要

1.to get current active cell (selected one),
2. get data it holds (date DD.MM.YY), 
3. search for the same date in other book (or same), 
4. copy found cell on the right to (Sheet1 right next to date on the right). 

有任何例子可以说明如何做到这一点吗?在此处输入图片描述

答案1

使用 VLOOKUP 函数从列中搜索匹配的索引。

VLOOKUP(lookup_value,table_array,col_index_num,range_lookup)

相关内容