Consulting

Results 1 to 3 of 3

Thread: Match two columns

  1. #1

    Match two columns

    What command do I use to match two columns of letters? If the letters are in both column the result should be "yes" if not then the result should be "no"
    Thanks for your help.
    Max

  2. #2
    VBAX Mentor CBrine's Avatar
    Joined
    Jun 2004
    Location
    Toronto, Canada
    Posts
    387
    Location
    =IF(ISERROR(MATCH(A1,$B$1:$B$7,FALSE)),"No","Yes")
    This formula should do what you need.
    A1= The value from the first column
    $B$1:$B$7 = The entire range of the 2nd column
    False=Exact Match

    You might need to adjust the ranges.

    HTH

    Edit: Here's an example
    The most difficult errors to resolve are the one's you know you didn't make.


  3. #3
    CBrine Thank you very much. The formula you gave me works just fine.
    Again thanks
    Max

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •