Macro to clear data

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,563
Office Version
  1. 2021
Platform
  1. Windows
I have the folowing macro


The data is only cleared on sheet "Imported Data" and not on sheet "All Data"


Kindly amend my code


Code:
 Sub Clear_Data()
Sheets("Imported Data").Select
Dim LR As Long
LR = Cells(Rows.Count, "A").End(xlUp).Row
With Range("A1:AZ" & LR)
.UnMerge
End With


With Range("A1:AZ" & LR)
.ClearContents
End With

Sheets("All Data").Select
With Range("A1:AZ" & LR)
.UnMerge
With Range("A1:AZ" & LR)
.ClearContents
End With
  End With
End Sub
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Maybe(although I don't see the need to select the sheets)...

Code:
Sub Clear_Data()
Dim LR As Long
    Sheets("Imported Data").Select
    LR = Cells(Rows.Count, "A").End(xlUp).Row
    With Range("A1:AZ" & LR)
        .UnMerge
        .ClearContents
    End With

    Sheets("All Data").Select
    LR = Cells(Rows.Count, "A").End(xlUp).Row
    With Range("A1:AZ" & LR)
        .UnMerge
        .ClearContents
    End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,897
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top