Excel VBA - 如何自动将范围与值对应

Excel VBA - 如何自动将范围与值对应

你们今天好吗?

我需要在超过 2000 个条目中执行一个函数(Excel 或 VBA),但我似乎无法弄清楚。

例子:

Sheet 1 - Column A (Dog, Cat, Lion, Eagle, Falcon, Vulture, Shark, Seabass, Whale)
    
Sheet 1 - Column B (Land, Air, Sea)
    
New sheet - Column A - new entries
    
New sheet - Column B - automatically filled cells with the corresponding element

我需要一种自动化的方法来:

  1. 将每种动物与一个元素匹配

Dog, Cat, Lion = LandFalcon, Vulture, Eagle = AirShark, Seabbas, Whale = Sea

此示例可以逐个完成,但我有超过 2000 个条目需要手动完成。我需要一种方法来选择 A 列中与 B 列中的特定单元格相对应的范围。

  1. 创建一个结果表(新工作表),其中 A 列填充了预定值第 1 页 - A 列以及包含相应元素的新列。

    new sheet = column A (entry column) and column B (correspondence column)

希望我说清楚了...我想这可能有点令人困惑。

提前致谢!

相关内容