I have a peculiar problem... I am trying to delete the contents of all the rows and columns beyond some row... I am using the below macro for that... The contents are cleared successfully but a black line is produced. Please help !!!
Sub CLEAR_REPORT()
Sheets("Report").Select
Rows("8:8").Select
Range("A8").Activate
Range(Selection, Selection.End(xlDown)).Select
Selection.Delete Shift:=xlUp
End Sub
Sub CLEAR_REPORT()
Sheets("Report").Select
Rows("8:8").Select
Range("A8").Activate
Range(Selection, Selection.End(xlDown)).Select
Selection.Delete Shift:=xlUp
End Sub