+ Reply to Thread
Results 1 to 2 of 2

Find the first Value in a Row and Retrieve the Header for That Column

  1. #1
    Registered User
    Join Date
    01-01-2005
    MS-Off Ver
    2007
    Posts
    368

    Find the first Value in a Row and Retrieve the Header for That Column

    Hi,

    I need some help solve this problem.
    Supose I have the array as in the file in attach.

    I want to:
    1) find the first value in the range A9:L9 (result: "1")
    2) retrieve header for that column (result: "i")
    3) find the next value in the range A9:L9 (result: "8")
    2) retrieve header for that column (result: "l")

    Best Regards,
    Elio
    Attached Files Attached Files

  2. #2
    Jim May
    Guest

    RE: Find the first Value in a Row and Retrieve the Header for That Col

    In a standard module paste in:

    Sub Foo()
    Set Rng = Range("A9:L9")
    For Each c In Rng
    If c.Value = 1 Or c.Value = 8 Then
    MsgBox "Your Header name is " & c.Offset(-8, 0).Value ' assumes your heade
    Row = 1
    End If
    Next c
    End Sub

    "efernandes67" wrote:

    >
    > Hi,
    >
    > I need some help solve this problem.
    > Supose I have the array as in the file in attach.
    >
    > I want to:
    > 1) find the first value in the range A9:L9 (result: "1")
    > 2) retrieve header for that column (result: "i")
    > 3) find the next value in the range A9:L9 (result: "8")
    > 2) retrieve header for that column (result: "l")
    >
    > Best Regards,
    > Elio
    >
    >
    > +-------------------------------------------------------------------+
    > |Filename: FirstValueInaRow.pdf |
    > |Download: http://www.excelforum.com/attachment.php?postid=4240 |
    > +-------------------------------------------------------------------+
    >
    > --
    > efernandes67
    > ------------------------------------------------------------------------
    > efernandes67's Profile: http://www.excelforum.com/member.php...o&userid=17916
    > View this thread: http://www.excelforum.com/showthread...hreadid=502585
    >
    >


+ 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