+ Reply to Thread
Results 1 to 12 of 12

Insert Rows Automatically...

Hybrid View

  1. #1
    Registered User
    Join Date
    11-09-2011
    Location
    Redditch, England
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: Insert Rows Automatically...

    Quote Originally Posted by davegugg View Post
    Just do Cells(12,"A").Activate
    Thanks, that's great!! Although... I realised my mistake once I added the code...
    I don't actually want A12 activated... I want the next cell in column A activated... So... When the last selection is made from column H... Say for instance H2, I'd like A3 to be selected and then when H3 has been changed... I'd like A4 to be activated and so on...

    Hope that makes sense?

  2. #2
    Forum Expert davegugg's Avatar
    Join Date
    12-18-2008
    Location
    WI, US
    MS-Off Ver
    2010
    Posts
    1,884

    Re: Insert Rows Automatically...

    Private Sub Worksheet_Change(ByVal Target As Range)
    
        If Not Intersect(Target, Me.Columns(8)) Is Nothing Then
            If Target.Cells.Count = 1 Then
                If Target.Value <> "" Then
                    Me.Rows(Target.Row + 1).Insert
                    Me.Cells(Target.Row+1,1).Activate
                End If
            End If
        End If
    
    End Sub
    Please refrain from quoting whole posts - it clutters the forum (see rule 12). I can easily look at the previous post to see what was last written.
    Is your code running too slowly?
    Does your workbook or database have a bunch of duplicate pieces of data?
    Have a look at this article to learn the best ways to set up your projects.
    It will save both time and effort in the long run!


    Dave

+ 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