+ Reply to Thread
Results 1 to 7 of 7

Search in a Matrix

Hybrid View

bleeding_me Search in a Matrix 02-16-2012, 06:02 AM
Andy Pope Re: Search in a Matrix 02-16-2012, 06:13 AM
bleeding_me Re: Search in a Matrix 02-16-2012, 06:21 AM
Andy Pope Re: Search in a Matrix 02-16-2012, 06:25 AM
bleeding_me Re: Search in a Matrix 02-16-2012, 06:26 AM
Marcol Re: Search in a Matrix 02-16-2012, 06:35 AM
Andy Pope Re: Search in a Matrix 02-16-2012, 06:50 AM
  1. #1
    Registered User
    Join Date
    07-08-2010
    Location
    Lisbon
    MS-Off Ver
    Excel 2007
    Posts
    11

    Search in a Matrix

    Hello my friends.

    I hope you can help me here.

    I have an excel with a matrix like the following


    	      Abrantes	     Amiais 	       Benavente	Chamusca	      Constância
    Abrantes 		                58	             98	    40	                   14
    Alcanede 	66	                12	             67	    54         	   50
    Alcanena 	46	                10	             72	    32	                   36
    Almeirim 	66	                38	             34	    24	                   60
    In this matrix you have the "origin city" as rows on the left, the "destination city" as columns , and the values.

    What I need to do is, given a origin city and a destination city, the macro must read the value.

    Anyone can help me how to achieve this ?

    Thank you in advance,
    Bleeding_me
    Last edited by bleeding_me; 02-16-2012 at 06:51 AM.

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Search in a Matrix

    Assuming your table is in A1:F5 then one way would be a combination of INDEX and MATCH

    =INDEX(B2:F5,MATCH(I3,A2:A5,0),MATCH(I4,B1:F1,0))

    Where I3 contains Origin city and I4 destination city
    Cheers
    Andy
    www.andypope.info

  3. #3
    Registered User
    Join Date
    07-08-2010
    Location
    Lisbon
    MS-Off Ver
    Excel 2007
    Posts
    11

    Re: Search in a Matrix

    Hello Andy,

    thank you for your reply but I try what u say and I get #N/A ...

    This is what I put (I have excel 2007)

    =INDEX(B2:F5;MATCH(I3;A2:A5;0);MATCH(I4;B1:F1;0))

  4. #4
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Search in a Matrix

    Did you enter the 2 cities to lookup?

    See attached,
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    07-08-2010
    Location
    Lisbon
    MS-Off Ver
    Excel 2007
    Posts
    11

    Re: Search in a Matrix

    Andy,

    I'm sorry, it was my mistake in writing one of the cities...

    This works like a charm ...by the way, is there any way of "converting" this excel formula in a piece of VBA code ?

  6. #6
    Forum Guru (RIP) Marcol's Avatar
    Join Date
    12-23-2009
    Location
    Fife, Scotland
    MS-Off Ver
    Excel '97 & 2003/7
    Posts
    7,216

    Re: Search in a Matrix

    A bit behind the curve here, but the example was done so I'll post it.

    This uses Dynamic Named Ranges with INDEX() & MATCH()
    Expand the Matrix/Table as required.
    Attached Files Attached Files
    If you need any more information, please feel free to ask.

    However,If this takes care of your needs, please select Thread Tools from menu above and set this topic to SOLVED. It helps everybody! ....

    Also
    اس کی مدد کرتا ہے اگر
    شکریہ کہنے کے لئے سٹار کلک کریں
    If you are satisfied by any members response to your problem please consider using the small Star icon bottom left of their post to show your appreciation.

  7. #7
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Search in a Matrix

    coded approach

    Sub X()
    
        Dim lngRow As Long
        Dim lngCol As Long
        Dim rngMatrix As Range
        Dim strOriginCity As String
        Dim strDestinationCity As String
        
        Set rngMatrix = Range("A1:F5")
        strOriginCity = Range("I3")
        strDestinationCity = Range("I4")
        
        lngRow = Application.Match(strOriginCity, rngMatrix.Columns(1), 0)
        lngCol = Application.Match(strDestinationCity, rngMatrix.Rows(1), 0)
        MsgBox "Value =" & rngMatrix(lngRow, lngCol)
        
    End Sub

+ 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