+ Reply to Thread
Results 1 to 3 of 3

Deleting empty rows from ACTIVE column

Hybrid View

  1. #1
    Registered User
    Join Date
    09-18-2012
    Location
    california
    MS-Off Ver
    Excel 2007
    Posts
    5

    Deleting empty rows from ACTIVE column

    Hello,

    I am trying to create a script to delete blank rows from the active column in which the amount of rows can vary.

    I've only been able to delete rows from Col A with a specified amount of rows:

    Sub DeleteRows()
    FirstRow = 1
    LastRow = 1200

    For r = LastRow To FirstRow Step -1
    If Range("A" & r).Value = "" Then
    Rows(r).EntireRow.Delete
    End If
    Next

    End Sub

    Thank you in advance,
    Noobtron

  2. #2
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Deleting empty rows from ACTIVE column

    Where is the active column? Which Column?

  3. #3
    Registered User
    Join Date
    09-18-2012
    Location
    california
    MS-Off Ver
    Excel 2007
    Posts
    5

    Re: Deleting empty rows from ACTIVE column

    Sorry for not clarifying. I am trying to make the active column where ever the selected active cell is. So if I am in C2 and I run the macro, I would like to have the active column be C. If I am in D4 and I run the macro, I'd like the active column to be column D. Is this possible?? Thank you in advance for your help.

+ 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