Code:
Here is what im using now:
Code:
Sub Delete_Row_20()
Application.ScreenUpdating = False
Range("B20").Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.ClearContents
Range("B21").Select
Range(Selection, Selection.End(xlDown)).Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.Copy
Range("B20").Select
ActiveSheet.Paste
Selection.End(xlDown).Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.ClearContents
Range("C2").Select
Application.ScreenUpdating = False
End Sub
I have a button like this in 30 rows (1 for each row) I just need to delete its particular row and move any data below (if there is any) up. I cannot use a simple delete row macro, cause it cause REF#! errors in other sheets.
Thanks everyone in advance.
sd