+ Reply to Thread
Results 1 to 7 of 7

Formula for match value

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-29-2012
    Location
    India
    MS-Off Ver
    Excel 2016
    Posts
    434

    Formula for match value

    hello

    We have two sheet in my workbook 1) Prarup-2 & 2)roadlist

    We want to compare Roadlist colum B Value with Prarup-2 sheet ... Colum C

    if Value Match then in Roadlist Sheet Display "Enter" in Column I otherwise that show <blank>

    Currently we use following Vlookup formula that's work fine..
    IF(ISERROR(VLOOKUP(B10,'Prarup-2'!$C$8:$C$1500,1,FALSE)=B10),"","Enter")
    but we want this formula with index and match function....

    Thank you

  2. #2
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: Formula for match value

    funny way of using vlookup
    and why do you want index match
    just match will do =if?(isnumber(match(b10,Prarup-2'!$C$8:$C$1500,0),"Enter","")
    or countif
    =if(countif(Prarup-2'!$C$8:$C$1500,b10),"enter","")
    but since you asked the index/match version would be
    IF(ISERROR(index(Prarup-2'!$C$8:$C$1500,match(B10,Prarup-2'!$C$8:$C$1500,0)=b10),"","Enter")
    Last edited by martindwilson; 09-19-2013 at 05:57 AM.
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  3. #3
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Formula for match value

    Why not using COUNTIF?

    =IF(COUNTIF(Prarup-2'!$C$8:$C$1500,B10);"Enter","")
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  4. #4
    Forum Expert Debraj Roy's Avatar
    Join Date
    09-27-2012
    Location
    New Delhi,India
    MS-Off Ver
    Excel 2013
    Posts
    1,469

    Re: Formula for match value

    If INDEX & MATCH both functions are mandatory..
    you can use this too..

    Formula: copy to clipboard
    =INDEX({"Enter",""},ISNA(MATCH(B2,'Prarup-2'!C:C,0))+1)


    Regards!
    =DEC2HEX(3563)

    If you like someone's answer, click the star to give them a reputation point for that answer...

  5. #5
    Forum Contributor
    Join Date
    01-29-2012
    Location
    India
    MS-Off Ver
    Excel 2016
    Posts
    434

    Re: Formula for match value

    firstly i m not in expert in forumal using so as per my knowledge we use vlookup in funnyway ;-) no problem

    all your exper advice work as per my requirement... we use index & match for this resion coz in HINDI font countif some speical character not understand so forumal return #NA

    we add reputation to all of you.

    Thank you very much.. Debraj, martindwilson & Fotis1991

  6. #6
    Forum Expert Debraj Roy's Avatar
    Join Date
    09-27-2012
    Location
    New Delhi,India
    MS-Off Ver
    Excel 2013
    Posts
    1,469

    Re: Formula for match value

    Hi santosh,

    you can share workbook, (if not so secure) so coz I never work on any hindi excel font.. wnat to learn how to match in this case..

    in the meanwhile.. you can try this too..

    Formula: copy to clipboard
    =INDEX({"Enter",""},ISNA(MATCH("*"&B2&"*",'Prarup-2'!C:C,0))+1)

  7. #7
    Forum Contributor
    Join Date
    01-29-2012
    Location
    India
    MS-Off Ver
    Excel 2016
    Posts
    434

    Re: Formula for match value

    sir my file is more then 1 mb so how can i send u... actually that is my project file where we currently working & in final stage .. but we want to share that file with you..so that u can suggest me few more formulas...
    my project is working is mS 2003
    u send me email id so we send u that file with u on email with brieaf details

    Santosh

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Match formula Full match vs. Partial
    By StevenH61 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-26-2013, 10:29 AM
  2. [SOLVED] Formula that counts rows that match 2 criteria, but do not match another
    By VivatMartin in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-06-2012, 07:43 AM
  3. Replies: 2
    Last Post: 05-29-2012, 03:42 PM
  4. Replies: 5
    Last Post: 02-29-2012, 08:51 PM
  5. Nested Match(index()) vs. Match() array formula.
    By GeneralDisarray in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-14-2011, 07:57 AM

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