I'm trying to use the With statement to make my code cleaner.
But I'm getting an error when the code try to run the ".Row" line, if my Excel file is opened in another sheet then the "Mysheet".
I need to select the entire row, so I can delete everything below it.
With Sheets("Mysheet")
.Row("12:12").Select
.Range(Selection, Selection.End(xlDown)).Delete
.Rows("11:11").ClearContents