+ Reply to Thread
Results 1 to 2 of 2

delete blank rows macro

Hybrid View

  1. #1
    Registered User
    Join Date
    12-28-2011
    Location
    asd
    MS-Off Ver
    Excel 2010
    Posts
    1

    delete blank rows macro

    hi

    cause doing macros in excel is rather new for me, so i need some help

    i googled for macro to delete blank rows and found this page http://www.ozgrid.com/VBA/VBACode.htm
    this would be great, but problem is that my "blank" rows contain formula and it displays null string in some results, and i want that rows deleted, but i cant cause they arent empty. is there a way to delete rows if a value of the result of the formula is empty string.

  2. #2
    Forum Contributor
    Join Date
    12-28-2011
    Location
    England
    MS-Off Ver
    Excel 2007
    Posts
    280

    Re: delete blank rows macro

    Hi

    You should be able to use Autofilter for this:

    'assume you want to delete rows which are blank (or "") in column B
    
    Dim r As Range
    
    Set r = Range("A1:G1000")
    
    Activesheet.AutofilterMode = False
    
    r.Autofilter Field:=2, Criteria1:="="
    
    r.Offset(1).Delete
    
    Activesheet.AutofilterMode = False

+ 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