Macro to clear Borders and data on all sheets from Col E1

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,563
Office Version
  1. 2021
Platform
  1. Windows
I have code below to clear borders and data from Col WE1 to last row containing Data oin Col Z

I get Type mismatch and the code below is highlighted

Code:
 With Sheets(WKS)


See full code below


Code:
Sub Clear_Borders_Unwanted()
Dim LR As Long, WKS As Worksheet
 For Each WKS In ActiveWorkbook.Worksheets
          
   With Sheets(WKS)
  LR = .Cells(.Rows.Count, "A").End(xlUp).Row
  .Range("E1:Z" & LR).Borders(xlEdgeLeft).LineStyle = xlNone
.Range("E1:Z" & LR).Borders(xlEdgeTop).LineStyle = xlNone
 .Range("E1:Z" & LR).Borders(xlEdgeBottom).LineStyle = xlNone
.Range("E1:Z" & LR).Borders(xlEdgeRight).LineStyle = xlNone
 .Range("E1:Z" & LR).Borders(xlInsideVertical).LineStyle = xlNone
.Range("E1:Z" & LR).Borders(xlInsideHorizontal).LineStyle = xlNone
.Range("E1:Z" & LR).ClearContents
 End With
 Next WKS
End Sub

It would be appreciated if someone could kindly amend my code
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Since you have already declared WKS to be a Worksheet object, you should change this line:
VBA Code:
   With Sheets(WKS)
to this:
VBA Code:
   With WKS
 
Upvote 0
Solution
Many Thanks fopr pointing this out. Have made the amendmenbt and macro works perfectly
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,583
Members
449,089
Latest member
Motoracer88

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