Oct 11, 2001 #1 tlaksh Programmer Feb 25, 2001 98 US Hi, I have two columns. Column A & Column B. I need to compare each value is column A with the whole column B and find if the value exist in column B. Is there a function that can do that? Any help will be appreciated. thxs Lakshmi.
Hi, I have two columns. Column A & Column B. I need to compare each value is column A with the whole column B and find if the value exist in column B. Is there a function that can do that? Any help will be appreciated. thxs Lakshmi.
Oct 11, 2001 #2 ETID Programmer Jul 6, 2001 1,867 US FILL THIS FORMULA DOWN IN COL. "C", TO RETURN AN X IF MATCHED BLANK IF NOT.... =IF(ISERROR(MATCH(A1,$B$1:$B$8,0)),"","X" HOPE THIS HELPS Upvote 0 Downvote
FILL THIS FORMULA DOWN IN COL. "C", TO RETURN AN X IF MATCHED BLANK IF NOT.... =IF(ISERROR(MATCH(A1,$B$1:$B$8,0)),"","X" HOPE THIS HELPS
Oct 11, 2001 #3 ETID Programmer Jul 6, 2001 1,867 US Substitute your last row in $B$8 for your last row.... Upvote 0 Downvote
Oct 11, 2001 #4 euskadi Programmer Oct 4, 2001 179 US Another alternative, if you want to search all of Column B without limiting your range of searchable cells in column B is this... In cell c1 enter this equation and fill down: =IF(ISERROR(VLOOKUP(A1,B:B,1,FALSE)),"","X" Upvote 0 Downvote
Another alternative, if you want to search all of Column B without limiting your range of searchable cells in column B is this... In cell c1 enter this equation and fill down: =IF(ISERROR(VLOOKUP(A1,B:B,1,FALSE)),"","X"