Hello: I'm trying to get rid of select on the following bit of code.
This works:
Range(ActiveCell.End(xlToRight), ActiveCell.Offset(0, 7).End(xlDown)).Cut
ActiveCell.End(xlToRight).Select
ActiveSheet.Paste
But when I try the following, I get Object Doesn't Support this property or method error:
Range(ActiveCell.End(xlToRight), ActiveCell.Offset(0, 7).End(xlDown)).Cut
ActiveCell.End(xlToRight).Paste
When I try the following, I get Application-defined or object-defined error:
Range(ActiveCell.End(xlToRight), ActiveCell.Offset(0, 7).End(xlDown)).Cut
Range(ActiveCell.End(xlRight)).Select
ActiveSheet.Paste
I've tried a few more and can't get it to work!
The macro is in my personal.xlsb.
Any help would be greatly appreciated!
This works:
Range(ActiveCell.End(xlToRight), ActiveCell.Offset(0, 7).End(xlDown)).Cut
ActiveCell.End(xlToRight).Select
ActiveSheet.Paste
But when I try the following, I get Object Doesn't Support this property or method error:
Range(ActiveCell.End(xlToRight), ActiveCell.Offset(0, 7).End(xlDown)).Cut
ActiveCell.End(xlToRight).Paste
When I try the following, I get Application-defined or object-defined error:
Range(ActiveCell.End(xlToRight), ActiveCell.Offset(0, 7).End(xlDown)).Cut
Range(ActiveCell.End(xlRight)).Select
ActiveSheet.Paste
I've tried a few more and can't get it to work!
The macro is in my personal.xlsb.
Any help would be greatly appreciated!