+ Reply to Thread
Results 1 to 4 of 4

Deleting rows with blank cells

Hybrid View

mike12345 Deleting rows with blank cells 11-28-2011, 02:50 PM
tigeravatar Re: Deleting rows with blank... 11-28-2011, 02:55 PM
mike12345 Re: Deleting rows with blank... 11-28-2011, 03:01 PM
tigeravatar Re: Deleting rows with blank... 11-28-2011, 03:07 PM
  1. #1
    Registered User
    Join Date
    04-27-2009
    Location
    New York, New York
    MS-Off Ver
    Excel 2003
    Posts
    25

    Deleting rows with blank cells

    I need a macro that will delete a row if there is any text in column A. For instance if there is any text written in cell A21 then the row 21 will be completely deleted. Thanks

  2. #2
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Deleting rows with blank cells

    mike12345,

    I'm a little confused. Your title states "Deleting rows with blank cells" but in your post you ask that if cells in column A contain any text, delete those rows... So you want non-blank rows deleted?
    Hope that helps,
    ~tigeravatar

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    04-27-2009
    Location
    New York, New York
    MS-Off Ver
    Excel 2003
    Posts
    25

    Re: Deleting rows with blank cells

    Yeah I completely screwed up the Title of the this thread. Should be "Deleting rows for cells that have text". Sorry

  4. #4
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Deleting rows with blank cells

    mike12345,

    Give this a try:
    Sub tgr()
        
        With ActiveSheet.UsedRange
            Rows(.Row).Insert
            With .Offset(-1).Resize(.Rows.Count + 1)
                .AutoFilter 1, "<>"
                .EntireRow.Delete
            End With
        End With
        
    End Sub

+ 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