Google 工作表:如果 A 列包含 B 列中也存在的值,则将文本字符串输出到 C 列(与 A 列中的值在同一行)

Google Sheets: If column A contains a value also found in column B, output text string to column C (on the same line as value in column A)

正如标题所说 我有两列数据,如果第二列包含在第一列中也找到的任何数据(完全匹配),则在第三列中输出字符串“found”(与第一列中的数据在同一行)

https://docs.google.com/spreadsheets/d/1MTWe0ZHuR1L8dARtsWLMekQmoP6Cx3RCubFpD12SPrk/edit?usp=sharing

尝试第 2 行:

=INDEX(IF(A2:A=B2:B; C2:C; ))

更新:

=INDEX(IF(IFNA(VLOOKUP(A2:A, G:H, 2, 0))="",,"found"))