+ Reply to Thread
Results 1 to 7 of 7

Delete rows/columns across worksheets

Hybrid View

  1. #1
    Registered User
    Join Date
    11-26-2015
    Location
    London, England
    MS-Off Ver
    10
    Posts
    4

    Delete rows/columns across worksheets

    Hello Leith,

    I'm also fairly new to VBA programming, but I'm attempting to create a similar solution that will delete blank columns across all worksheets building on what you provided to ncalsurfer. Obviously this is more difficult than I expected. Here's what I've got so far:
    Sub Remove_Blanks_ALL_Sheets()
    '
    ' Remove_Blank_Columns Macro
    ' Macro to remove blank columns in all sheets
    '
    ' Keyboard Shortcut: Ctrl+r
    '
    Dim ws As Worksheet
    For Each ws In ActiveWorkbook.Worksheets
        ws.Cells.Select
        ws.Selection.SpecialCells(xlCellTypeBlanks).Select
        ws.Select.EntireColumn.Delete
    Next ws
    End Sub
    Your assistance would be greatly appreciated. I'm using Excel 2007, but also have access to Excel 2010 if needed.
    Last edited by Leith Ross; 11-27-2015 at 02:53 PM. Reason: Added Code Tags

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Delete rows/columns across all worksheets

    Hello jrags01,

    Welcome to the Forum!

    As a new member, please read the Forum's Rules for posting when you have time. Forum Rules

    Do any of the worksheets have merged cells?
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Registered User
    Join Date
    11-26-2015
    Location
    London, England
    MS-Off Ver
    10
    Posts
    4

    Re: Delete rows/columns across all worksheets

    Hi Leith,

    No merged cells.

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Delete rows/columns across worksheets

    Hello jrags01,

    Sorry to be picky, do you want to delete columns that might have cells with just spaces in them?

  5. #5
    Registered User
    Join Date
    11-26-2015
    Location
    London, England
    MS-Off Ver
    10
    Posts
    4

    Re: Delete rows/columns across worksheets

    Hi Leith,

    My source data should not have any spaces in the cells as it has come from GIS. So I would like to delete all columns that don't have any data below the header row. If there is no data, delete the entire column.

  6. #6
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Delete rows/columns across worksheets

    Hello jrags01,

    This will start with cell "A1" on the ActiveSheet. You can change this to were you data starts. The macro will find the last row and column with data or a formula in it. The first row of the range is assumed to be the header row. All columns that are empty within the range are deleted.

    Sub DeleteEmptyColumns()
    
        Dim c           As Long
        Dim LastCol     As Variant
        Dim LastRow     As Variant
        Dim Rng         As Range
        
            Set Rng = Range("A1")
            
            LastCol = Cells.Find("*", , xlFormulas, xlWhole, xlByColumns, xlPrevious, False, False, False).Column
            LastRow = Cells.Find("*", , xlFormulas, xlWhole, xlByRows, xlPrevious, False, False, False).row
            
            Set Rng = Rng.Resize(LastRow - Rng.row + 1, LastCol - Rng.Column + 1)
            Set Rng = Intersect(Rng, Rng.Offset(1, 0))
            
            For c = Rng.Columns.Count To 1 Step -1
                If Application.CountA(Rng.Columns(c)) = 0 Then
                    Rng.Columns(c).EntireColumn.Delete
                End If
            Next c
            
    End Sub

  7. #7
    Registered User
    Join Date
    11-26-2015
    Location
    London, England
    MS-Off Ver
    10
    Posts
    4

    Re: Delete rows/columns across worksheets

    Hi Leith,

    That has worked brilliantly on a sheet by sheet basis so thanks for that. I wonder if there's a way to take it one step further and have it loop through all the sheets in the workbook and remove the empty columns, such that the macro would only have to be run once per file?

    Thanks again,

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Delete rows based on the value of two columns using VBA code - Multiple worksheets
    By OmniBlue in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-18-2015, 04:24 PM
  2. [SOLVED] delete columns in related worksheets
    By aaaaa34 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-07-2014, 10:47 AM
  3. Replies: 6
    Last Post: 03-04-2013, 12:03 AM
  4. Macro to delete certain columns and delete rows based on time in another column
    By beepbeep27 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-12-2012, 11:47 AM
  5. Delete & Merge Columns,Delete Rows with filter, etc
    By traderindia in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-17-2009, 02:12 AM
  6. Delete rows/columns across all worksheets
    By ncalsurfer in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-24-2009, 06:59 PM
  7. [SOLVED] Delete same Rows/Columns from two worksheets at a time
    By Vinit in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-14-2005, 12:06 AM

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