Results 1 to 4 of 4

Need help speeding up Clear cells and merged cell

Threaded View

  1. #1
    Registered User
    Join Date
    11-05-2012
    Location
    shelton, wa
    MS-Off Ver
    Office 365
    Posts
    24

    Need help speeding up Clear cells and merged cell

    Hello, I am two codes that I am calling when I click an icon in office 365's Excel. The two VBA's that I have, I found online looking for a code to do this process. I am not a VBA writer so that is why I am stuck in this spot right now. I ran the code and it took a little over two minutes to run. I know it could be faster if the two items did not look at every cell on the active sheet, but only the area that I allow people to input info. N3:AZ500 is my range that I need these two to look at instead of the whole sheet. Can anyone help out on changing the Range? I understand what the code is doing, it's just the Dim Rng As Range and such is where I get lost. Thanks again.




    'THIS WILL CLEAR OUT ANY MERGED CELLS WHERE THE PROTECTION OPTION IN FORMAT CELL IS NOT SELECTED TO LOCKED
    Sub ClearMergedCells()
        Dim Rng As Range, cel As Range, rClearA As Range
        Set Rng = ActiveSheet.UsedRange
        For Each cel In Rng
            If cel.MergeCells And cel.Locked = False Then
                If rClearA Is Nothing Then
                    Set rClearA = cel
                Else
                    Set rClearA = Union(rClearA, cel)
                End If
            End If
        Next cel
        rClearA.ClearContents
    End Sub
    
    'THIS WILL CLEAR OUT ANY UNMERGED CELLS WHERE THE PROTECTION OPTION IN FORMAT CELL IS NOT SELECTED TO LOCKED
    Sub ClearUnlockedCells()
    
        Dim WorkRange As Range
        Dim Cell As Range
        Set WorkRange = ActiveSheet.UsedRange
        
        For Each Cell In WorkRange
            If Cell.Locked = False Then Cell.Value = ""
        Next Cell
    
    End Sub
    
    'THIS CALLS THE ABOVE TWO CODES AND RUNS THEM
    Sub CLEAN_SHEET()
    Call ClearMergedCells
    Call ClearUnlockedCells
    End Sub
    Last edited by SHELTONUNDERDOG; 12-10-2021 at 04:05 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Clear merged cells with VBA, any difference between the two formulas?
    By MagnusNovak in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 09-17-2021, 07:09 PM
  2. [SOLVED] Clear contents merged cells
    By Vlad2112 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-14-2021, 12:54 PM
  3. Clear contents in Merged and Un-Merged, Unprotected Cells of a Protected Worksheet.
    By Magnetite in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-24-2020, 04:23 AM
  4. [SOLVED] Clear merged and non-merged cells in named range.
    By IMM Tech in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-20-2018, 12:37 PM
  5. Clear merged cell contents in comand button(clear all)
    By mohan_984 in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 08-25-2015, 10:39 AM
  6. Clear contents of all unlocked cells (many are merged cells)
    By 2funny4words in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 06-08-2009, 09:21 AM
  7. Clear Contents won't work on merged cells
    By ArthurJ in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-20-2006, 01:25 PM

Tags for this Thread

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