+ Reply to Thread
Results 1 to 2 of 2

how to identify a cell address

Hybrid View

  1. #1
    Alex
    Guest

    how to identify a cell address

    I need to find a cell "FIND" then take a number from the 8th column and
    allocate this number with some percentage (30%,40%,30%) to the cells above +1
    row up, +2 row up, and +3 row up. Using vlookup I'm getting the number bu how
    to find the cell's address and the addresses of the cells above to assign
    them the %?

    Dim rngCell As Range, rngName As Range
    Dim num
    Set rngName = Worksheets("Legend").Range("C3:J500")
    num= Application.VLookup("FIND", rngName, 8, False) ' Ok
    Set rngCell = Application.VLookup("FIND", rngName, 8, False) ' the error!!!

  2. #2
    Tom Ogilvy
    Guest

    Re: how to identify a cell address

    Dim rngCell As Range, rngName As Range
    Set rngName = Worksheets("Legend").Range("C3:J500")
    num= Application.Match("FIND", rngName.Columns(1), 0)
    set rngCell = rngName(num,8)
    msgbox rngCell.Address

    --
    Regards,
    Tom Ogilvy



    "Alex" <Alex@discussions.microsoft.com> wrote in message
    news:D957514D-7084-4955-A4DF-B204156CE48C@microsoft.com...
    > I need to find a cell "FIND" then take a number from the 8th column and
    > allocate this number with some percentage (30%,40%,30%) to the cells above

    +1
    > row up, +2 row up, and +3 row up. Using vlookup I'm getting the number bu

    how
    > to find the cell's address and the addresses of the cells above to assign
    > them the %?
    >
    > Dim rngCell As Range, rngName As Range
    > Dim num
    > Set rngName = Worksheets("Legend").Range("C3:J500")
    > num= Application.VLookup("FIND", rngName, 8, False) ' Ok
    > Set rngCell = Application.VLookup("FIND", rngName, 8, False) ' the

    error!!!



+ 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