Skip to content

Instantly share code, notes, and snippets.

@tanzilhuda
Created August 4, 2020 21:47
Show Gist options
  • Save tanzilhuda/26143983d103bfc32b0d47cdda0e6b4b to your computer and use it in GitHub Desktop.
Save tanzilhuda/26143983d103bfc32b0d47cdda0e6b4b to your computer and use it in GitHub Desktop.
Delete same rows across multiple sheets In Excel
Sub bleh()
Dim xWs As Worksheet
Set xWs = ActiveSheet
ThisWorkbook.Worksheets.Select
Rows("10:20").Select
Selection.Delete
xWs.Select
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment