Closed Thread
Results 1 to 15 of 15

How to insert blank row below a cell containing specific text

Hybrid View

Lmsloman How to insert blank row below... 10-19-2009, 04:30 PM
davegugg Re: How to insert blank row... 10-19-2009, 04:36 PM
Lmsloman Re: How to insert blank row... 10-19-2009, 04:42 PM
JBeaucaire Re: How to insert blank row... 10-19-2009, 04:45 PM
Lmsloman Re: How to insert blank row... 10-19-2009, 04:51 PM
davegugg Re: How to insert blank row... 10-19-2009, 05:13 PM
Ferdinand Re: How to insert blank row... 08-13-2010, 08:44 AM
JBeaucaire Re: How to insert blank row... 08-13-2010, 10:54 AM
Ferdinand Re: How to insert blank row... 08-16-2010, 06:24 AM
Ferdinand Re: How to insert blank row... 08-16-2010, 07:19 AM
JBeaucaire Re: How to insert blank row... 08-16-2010, 11:52 AM
Ferdinand Re: How to insert blank row... 08-18-2010, 04:01 AM
JBeaucaire Re: How to insert blank row... 08-18-2010, 08:38 AM
hemaveera Re: How to insert blank row... 05-14-2012, 09:00 PM
arlu1201 Re: How to insert blank row... 05-15-2012, 02:59 AM
  1. #1
    Registered User
    Join Date
    08-24-2006
    Location
    Maryland
    Posts
    50

    Question How to insert blank row below a cell containing specific text

    Good Afternoon Friends,

    I was wondering if someone might be able to assist me with using VB to insert a new row below a cell containing specific text.

    For example:

    - All of my data is in column A
    -I want to scan all of column A, and if there is a cell that contains "ACHCAMERIGROUP M", then I want a blank row inserted below it. If column A does NOT contain that text....do nothing.

    Thanks so much in advance,

    Laura
    Last edited by Lmsloman; 10-19-2009 at 04:42 PM. Reason: Problem Solved :)

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

    Re: How to insert blank row below a cell containing specific text

    Hows this do for ya?

    Sub lmsloman()
    
    For a = 1 To ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
        If ActiveSheet.Cells(a, 1).Value = "ACHCAMERIGROUP M" Then
            ActiveSheet.Rows(a + 1).Insert
            a = a + 1
        End If
    Next a
    
    End Sub
    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

  3. #3
    Registered User
    Join Date
    08-24-2006
    Location
    Maryland
    Posts
    50

    Re: How to insert blank row below a cell containing specific text

    You get a gold star for the day!

    Thank you so much!

  4. #4
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: How to insert blank row below a cell containing specific text

    If there's only one instance of this value, there's no need to loop, you can jump directly to it:
    Option Explicit
    Option Compare Text
    
    Sub InsertRow()
    Dim rFind As Long
    On Error Resume Next
    
    rFind = Columns("A:A").Find(What:="ACHCAMERIGROUP M", After:=Range("A1"), LookIn:=xlValues, _
        LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Row
    
    If rFind > 0 Then Rows(rFind + 1).Insert xlShiftDown
    
    End Sub
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  5. #5
    Registered User
    Join Date
    08-24-2006
    Location
    Maryland
    Posts
    50

    Re: How to insert blank row below a cell containing specific text

    Unfortunately, I don't know how many instances of this there would be.

    But hey, if I wanted to get extra fancy....is there a way to specify to change the newly created blank cell in column A to "NA" or any other specific text?

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

    Re: How to insert blank row below a cell containing specific text

    Do this instead, its better than the other code anyway as I may have missed some values near the end.

    Sub lmsloman()
    
    a = 1
    
    Do Until a = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
        If ActiveSheet.Cells(a, 1).Value = "ACHCAMERIGROUP M" Then
            ActiveSheet.Rows(a + 1).Insert
            ActiveSheet.Cells(a + 1, 1).Value = "NA"
        End If
        a = a + 1
    Loop
    
    End Sub

  7. #7
    Registered User
    Join Date
    12-27-2005
    Posts
    5

    Re: How to insert blank row below a cell containing specific text

    Hi,

    Regarding to the helpfull code provide by DaveGugg, how to change below code to have a row insert ABOVE te value indicated and not BELOW

    I have searched, tried almost all day now but didn't succeed. Nevertheless I expect the solution to be fairly simple.

    Ferdinand

    - - - - - - - -

    Sub lmsloman()
    
    For a = 1 To ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
        If ActiveSheet.Cells(a, 1).Value = "ACHCAMERIGROUP M" Then
            ActiveSheet.Rows(a + 1).Insert
            a = a + 1
        End If
    Next a
    
    End Sub
    Last edited by arlu1201; 05-15-2012 at 04:12 AM. Reason: Please use code tags in future.

  8. #8
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: How to insert blank row below a cell containing specific text

    Change the code to insert at "a - 1" instead of "a + 1".

  9. #9
    Registered User
    Join Date
    12-27-2005
    Posts
    5

    Re: How to insert blank row below a cell containing specific text

    Hi,

    Thanks for the quick reply, but unfortunately it didn't work.

    1st attempt --> changed both a + 1 into a - 1
    result: ca. 6000 lines added and one line inserted one row below the needed row (caused by the a-1 ?)

    2nd attempt --> changed the final a +1 into a - 1 in the code
    result: excel is adding empty rows from the row with correct argument untill limit of file is reached.

  10. #10
    Registered User
    Join Date
    12-27-2005
    Posts
    5

    Lightbulb Re: How to insert blank row below a cell containing specific text

    So, maybe a new code?

    If this would be my column in excel ....
    A
    A
    A
    B
    A
    A
    A

    ... i want to have an empy row inserted above each B
    In other wors, the command 'insert row' should be made in the row where the B is located.

    However, I have the feeling that after inserting one row (above) the found value 'B', the new value 'B' will be the one previous found and thus adding loads of empty rows.

    So, after adding the row, the code should be programmed that it skips an extra row to continue the search without bouncing on the same argument again.

    Does that makes sence?

    Ferdinand.

  11. #11
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: How to insert blank row below a cell containing specific text

    Give this a try:
    Option Explicit
    
    Sub InsertRows()
    Dim MyVal   As String
    Dim MyCol   As Range
    Dim vFIND   As Range
    Dim vFIRST  As Range
    
    MyVal = Application.InputBox("String to insert rows above", Type:=2)
    If MyVal = "False" Then Exit Sub
    
    Set MyCol = Application.InputBox("Highlight a column to search", Type:=8)
    On Error Resume Next
    Set vFIND = MyCol.Find(MyVal, MyCol.Cells(1), xlValues, xlWhole, xlByRows, xlNext, False)
    
        If Not vFIND Is Nothing Then
            Set vFIRST = vFIND
            Do
                vFIND.EntireRow.Insert xlShiftDown
                Set vFIND = MyCol.FindNext(vFIND.Offset(1))
            Loop Until vFIND.Address = vFIRST.Address
        Else
            MsgBox "Search string not found in the specified column." & vbLf & "No rows added."
        End If
    
    Set MyCol = Nothing
    Set vFirst = Nothing
    Set vFind = Nothing
    End Sub

  12. #12
    Registered User
    Join Date
    12-27-2005
    Posts
    5

    Re: How to insert blank row below a cell containing specific text

    Thanks for the help. It is working now, and quite fancy I must say.
    'please select string' and 'please select row'. Superb!

    Thanks again.

    Ferdinand
    Last edited by Ferdinand; 08-18-2010 at 04:22 AM.

  13. #13
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: How to insert blank row below a cell containing specific text

    Ferdinand, I just noticed this was someone else's thread. Next time be sure to start a thread of your own, as per the Forum Rules. Thanks.

  14. #14
    Registered User
    Join Date
    01-15-2012
    Location
    india
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: How to insert blank row below a cell containing specific text

    could any one help me how to insert a new row between two bold cell values. ex: insert a new row if values of b1 and b2 are bold and this implies to the whole row.

  15. #15
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: How to insert blank row below a cell containing specific text

    Hemaveera,

    Welcome to the Forum, unfortunately:

    Your post does not comply with Rule 2 of our Forum RULES. Don't post a question in the thread of another member -- start your own thread. If you feel it's particularly relevant, provide a link to the other thread. It makes sense to have a new thread for your question because a thread with numerous replies can be off putting & difficult to pick out relevant replies.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

Closed 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