Code:
Sub ResetDestinationSheets()
Call ResetThisSheet("SPED")
Call ResetThisSheet("ELL-LEP")
Call ResetThisSheet("MI")
Call ResetThisSheet("NORTH")
Call ResetThisSheet("CCC")
Call ResetThisSheet("ONE EOC")
Call ResetThisSheet("TWO EOC")
Call ResetThisSheet("THREE EOC")
Call ResetThisSheet("FOUR EOC")
Call ResetThisSheet("FIVE EOC")
End Sub
Sub ResetThisSheet(ByRef SheetToClear As String)
Sheets(SheetToClear).Range("A2:U" & Rows.Count).Clear
End Sub
Last edited by a moderator: