How can i compare two columns to see if the value in the B cell appears anywhere in column A?
问题 I have 2 columns like this (yep, Porn) A B menshealthbase.com XVIDEOS.COM dailyrx.com ASHLEYRNADISON.COM puzzleovergames.com PORNHUB.COM adventuregamesland.com DOUBLEPIMP.COM and i'd like to see if the value in cell B1 appears anywhere in column A (the actual column is over 20,000 values). If yes, then I'd like it to print either a 'yes' or 'no' in column C Any suggestions? my experience with vlookup is limited 回答1: Try this in column C: =IF(ISNUMBER(MATCH(B1, A:A, 0)), "Found", "") This will