How to re-write this code better?
Thanks!
Code:
Sub delType() Select Case Range("H:H").Value
Case "Cred Memo (Val Only)", "Debit Memo(Val Only)", "Debit Memo (Val&Qty)", "Debit Memo Service", "NC Replc Ord/No rtrn", "Quotation", "Order Worksheet", "Rebate Part Settlmnt", "Rebate Manual Accrls", "Reb Accr Correction", "Reb Cr Req - Final", "Return w/ Auto Deliv", "Rtrns f/Internal Use", "Consignment Pick-up", "Return Non Value", "Intra-cross FE Rtn", "Goodwill", "Internal Usage", "Export Documentation", "Consignment Fill-up", "AMMAN", "Standard Order", "EA", "SO/PO Intracompany", "SO/PO Intra-cross", "Intercompany SO/PO"
Range("A:A").Value = "X"
End Select
End Sub
Thanks!