Hello: I'm trying to avoid using the Select method, so I'm trying ActiveCell. But I've heard I should try to avoid using ActiveCell as well. Any ideas on firming up this code?
Here's what I have:
Using Select
Range(Selection.End(xlToRight), Selection.Offset(0, 7)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Cut
Using ActiveCell
Range(ActiveCell.End(xlToRight), ActiveCell.Offset(0, 7).End(xlDown)).Cut
Thank you
Here's what I have:
Using Select
Range(Selection.End(xlToRight), Selection.Offset(0, 7)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Cut
Using ActiveCell
Range(ActiveCell.End(xlToRight), ActiveCell.Offset(0, 7).End(xlDown)).Cut
Thank you