我有4列。第一列是唯一ID列表,第2列为空,第3列是ID列表,但可能有重复项,第4列有一些文本。我可以在第2列中编写一些公式来检查第3列中的ID是否存在于第3列中,并且每次检查第4列中的第4列中的文本是否包含"嘿"在里面。如果是,则应在第2栏中返回此文本。
1 1 hey whatever
2 1 whatever
4 3 whatever
6 3 hey maybe
3 maybe
4 hey whatever maybe
5 whatever maybe
5 hey whatever
也许我过于复杂,但我想不出一种解决问题的方法。提前感谢任何提示。
对于此示例,结果应为:
1 hey whatever 1 hey whatever
2 N/a 1 whatever
4 hey whatever maybe 3 whatever
6 N/a 3 hey maybe
3 maybe
4 hey whatever maybe
5 whatever maybe
5 hey whatever
编辑:链接主题中的解决方案假设值是从一开始给出的,并且它在一行上查找精确的行匹配,我认为我们需要一个循环通过另一个公式的结果的公式,直到它找到一场比赛。