VBA Macro To Delete
Selected Cells, Rows, Columns In a Active WorkSheet
Sub Delete_Cells( )
Sub Delete_Cells( )
Selection.Delete 'Deletes Selected Cells'
End
Sub
Sub Delete_Row( )
rows(1).select
Selection.EntireRow.Delete 'Deletes Entire Row'
End Sub
Sub Delete_Column( )
columns(2).select
Selection.EntireColumn.Delete 'Deletes Entire Column'
End Sub
Thanks, Tamatam
No comments:
Post a Comment
Hi User, Thank You for visiting My Blog. Please post your genuine Feedback or comments only related to this Blog Posts. Please do not post any Spam comments or Advertising kind of comments which will be Ignored.