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.
您好,我需要在文本中找到一个特定的单词并返回该单词所在的整个字符串。每个字符串都在一个 excel 单元格中。谢谢 Dan
大概您想在特定的单元格范围内找到单词?如果您正在查看像 A1:A100 这样的单列数据,那么您可以使用 VLOOKUP,例如,此公式将找到包含“单词”的第一个单元格并返回该单元格中的所有内容
=VLOOKUP("*word*",A1:A100,1,0)