silvertabb
Active Member
- Joined
- May 18, 2004
- Messages
- 252
I have data in column A and B. In column C I need to enter a formula to help see whether or not data in Column B is repeated in Column A. Here is what I have in mind:
1) Is B1 contained in A1:A100 range?
2) If the answre is Yes the output should be YES otherwise it should generate NO
3) Reapeat 1 and 2 for the remaining entries in Column B
thanks,
Said
Would this work:
=if(iserror(vlookup(B1,A1:A100,1,F)),"Yes","NO")
1) Is B1 contained in A1:A100 range?
2) If the answre is Yes the output should be YES otherwise it should generate NO
3) Reapeat 1 and 2 for the remaining entries in Column B
thanks,
Said
Would this work:
=if(iserror(vlookup(B1,A1:A100,1,F)),"Yes","NO")