+ Reply to Thread
Results 1 to 3 of 3

Finding data in one column that exists in another and it's cell location

  1. #1
    Registered User
    Join Date
    03-11-2010
    Location
    Colorado Springs, CO
    MS-Off Ver
    Excel 2007
    Posts
    9

    Finding data in one column that exists in another and it's cell location

    I searched but couldn't find what I was looking for so my apologies if it's already on this forum somewhere.

    I typically use this: =iferror( vlookup(A1 , B:B , 1, 0) , "Not Found")

    and it tells me if something is in 2 columns however I can't figure out how to have it display where in the B column it's located so I can deal with that data. Can someone help me with this?

    Thanks
    Keith

  2. #2
    Forum Guru
    Join Date
    05-24-2011
    Location
    India
    MS-Off Ver
    Office 2021
    Posts
    2,237

    Re: Finding data in one column that exists in another and it's cell location

    Use MATCH function,

    =MATCH(A1,B:B,0)

    This will show you in which row A1 located in Col_B. If not found will show a #N/A error. To avoid errors use IFERROR.

    =IFERROR(MATCH(A1,B:B,0),"Not Found")
    Regards,
    Haseeb Avarakkan

    __________________________________
    "Feedback is the breakfast of champions"

  3. #3
    Registered User
    Join Date
    03-11-2010
    Location
    Colorado Springs, CO
    MS-Off Ver
    Excel 2007
    Posts
    9

    Cool Re: Finding data in one column that exists in another and it's cell location

    Thank you so much! This site is so helpful for those of us that don't use Excel as extensively and have little resources to find answers! I love it!

    Thanks again
    Keith

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1