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
You could try this
=IF(ISNA(VLOOKUP(,,1,FALSE)),FALSE, TRUE)
-or-
=IF(ISNA(VLOOKUP(,,1,FALSE)),"FALSE", "File found in row " & MATCH(,,0))
you could replace
and
with named ranged. That'd probably be the easiest.
Just drag that formula all the way down the length of your I column in whatever column you want.