Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C 列中有一个带有数据验证的列表(汽车、食品、动物)。在 B 列中,有数百行,带有一些文本。但是我知道例如(BMW,VOLVO,OPEL,KIA)通常用col B写成。我想标记为CAR。我不想让我手动做,所以我怎么能用规则自动做呢?
您需要创建一个包含所有您知道的单词的支持表。然后您可以使用 VLOOKUP 公式查找此表。在以下示例中,我将此表放在 E&F 列中:
我在 C2 中使用了以下公式:
=IFERROR(VLOOKUP(B2,E:F,2,0),"未知类别")