+ Reply to Thread
Results 1 to 4 of 4

Hlookup?

Hybrid View

eramsva Hlookup? 09-10-2012, 09:40 AM
MarkinTX Re: Hlookup? 09-10-2012, 05:56 PM
Haseeb Avarakkan Re: Hlookup? 09-10-2012, 07:58 PM
eramsva Re: Hlookup? 09-11-2012, 02:16 AM
  1. #1
    Registered User
    Join Date
    09-10-2012
    Location
    Sweden
    MS-Off Ver
    Excel 2003
    Posts
    7

    Hlookup?

    Hi experts!

    I´m trying to sort some information, seen in the attachet example.

    In Cells J3 to L5 I would like to identify the "commodities" used of each offer as per table 1.

    I can use Hlookup with many nested IF statements, but is there an easier way?

    Thanks for the help!

    Martin
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    09-05-2012
    Location
    Dallas, Tx
    MS-Off Ver
    Excel 2007
    Posts
    88

    Re: Hlookup?

    In the attached spreadsheet I have added the custom Metal function

    Function Metal(Srng As Range, HLook As Range, Oset As Integer)
    Dim Cell As Range
    Dim MCount As Integer
    MCount = 0
    
    For Each Cell In Srng
        If Application.WorksheetFunction.HLookup(Cell, HLook, Oset) = "Metal" Then
        MCount = MCount + 1
        End If
    Next Cell
    
    If MCount > 0 Then
    Metal = "Yes"
    Else
    Metal = "No"
    End If
    
    End Function
    In Cell J3 you will fine the formula "=metal(B3:H3,B13:H14,2)"
    In the function the
    first range is all of the items you want to search for
    Second range is the "lookup" range
    3rd item is the offset for the Hlookup command.

    You can copy this function and rename it Rubber, plastic etc, and change the ="Metal" in the function to Rubber etc.
    Attached Files Attached Files
    http://excelevangelist.blogspot.com/

  3. #3
    Forum Guru
    Join Date
    05-24-2011
    Location
    India
    MS-Off Ver
    365
    Posts
    2,243

    Re: Hlookup?

    Also,

    In J3 with CTRL+SHIFT+ENTER,

    =IF(SUM(COUNTIF($B3:$H3,IF($B$14:$H$14=LEFT(J$2,FIND(" ",J$2)-1),$B$13:$H$13))),"Yes","No")

    Then copy across & Down.
    Regards,
    Haseeb Avarakkan

    __________________________________
    "Feedback is the breakfast of champions"

  4. #4
    Registered User
    Join Date
    09-10-2012
    Location
    Sweden
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Hlookup?

    Fantastic guys. txs!

+ 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