I have the following code to delete a Row from cell D4 and everything to its right.
Can this code be simplified?
Can this code be simplified?
Code:
Range("D4").Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.Delete shift:=xlUp