Find if value in column A contains value from column B?

前端 未结 3 1889
温柔的废话
温柔的废话 2021-01-30 21:12

I have two columns- column E which extends upto 99504(values) and column I which extends to 2691(values).Both the columns contains filenames with extension.

Something li

3条回答
  •  南方客
    南方客 (楼主)
    2021-01-30 21:16

    You can try this. :) simple solution!

    =IF(ISNUMBER(MATCH(I1,E:E,0)),"TRUE","")
    

提交回复
热议问题