Consulting

Results 1 to 7 of 7

Thread: Jumping to intermittent last cells in a column

  1. #1
    VBAX Newbie
    Joined
    Aug 2018
    Posts
    3
    Location

    Lightbulb Jumping to intermittent last cells in a column

    HI Everybody -

    Pl guide me to find intermittent last empty cell of a column, in column B need to find last intermittent cells ex:B234, B445,B561 ......

    Enclosed excel sheet.

    Thanks in advance,

    Best,

    Ramesha
    Attached Files Attached Files

  2. #2
    Knowledge Base Approver VBAX Guru macropod's Avatar
    Joined
    Jul 2008
    Posts
    4,435
    Location
    Cross-posted at: https://www.mrexcel.com/forum/excel-...ll-column.html
    Please read VBA Express' Cross-Posting policy in rule 3: http://www.vbaexpress.com/forum/faq...._new_faq_item3
    Cheers
    Paul Edstein
    [Fmr MS MVP - Word]

  3. #3
    VBAX Newbie
    Joined
    Aug 2018
    Posts
    3
    Location
    I, didn't know that, we need to paste link of questions posted in other forum, as no body had viewed the post in this forum, I, tried checking with other, will take note of your suggestion

  4. #4
    Knowledge Base Approver VBAX Guru macropod's Avatar
    Joined
    Jul 2008
    Posts
    4,435
    Location
    Quote Originally Posted by rameshad View Post
    no body had viewed the post in this forum
    Exactly what do you expect from a volunteer forum on a weekend (given the time at which you posted, what's more)???
    Cheers
    Paul Edstein
    [Fmr MS MVP - Word]

  5. #5
    VBAX Newbie
    Joined
    Aug 2018
    Posts
    3
    Location
    very valid point,

  6. #6
    Moderator VBAX Wizard Aussiebear's Avatar
    Joined
    Dec 2005
    Location
    Queensland
    Posts
    5,055
    Location
    Quote Originally Posted by rameshad View Post
    "as no body had viewed the post in this forum"....
    Unfortunately you posted this in the "Announcements" forum rather than the "Excel" forum
    Remember To Do the Following....
    Use [Code].... [/Code] tags when posting code to the thread.
    Mark your thread as Solved if satisfied by using the Thread Tools options.
    If posting the same issue to another forum please show the link

  7. #7
    Knowledge Base Approver VBAX Wizard p45cal's Avatar
    Joined
    Oct 2005
    Location
    Surrey UK
    Posts
    5,873
    Quote Originally Posted by rameshad View Post
    Pl guide me to find intermittent last empty cell of a column, in column B need to find last intermittent cells ex:B234, B445,B561 ......
    …and do what with them?
    The following acts on the active sheet and puts a link to them in a list starting at cell M1 of that active sheet.
    Sub blah()
    Set Destn = Range("M1")
    For Each are In Columns("B:B").SpecialCells(xlCellTypeConstants, 1).Areas
      Destn.Formula = "=" & are.Cells(are.Cells.Count).Address
      'ActiveSheet.Hyperlinks.Add Anchor:=Destn, Address:="", SubAddress:=are.Cells(are.Cells.Count).Address 'this line, if uncommented also adds a link to that cell.
      Set Destn = Destn.Offset(1)
    Next are
    End Sub
    Last edited by p45cal; 08-21-2018 at 08:07 AM.
    p45cal
    Everyone: If I've helped and you can't be bothered to acknowledge it, I can't be bothered to look at further posts from you.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •