If I have continuous data in cells A6:G15, the below lines of code select/highlight that data similar to pressing "ctrl + shift + down + right". And they all work.
For reference, Line 2 and 3 depend on Line 1 but Line 4 stands on its own.
My question is what are the back-end differences and which may be better in certain situations?
'Line 1
Sheets("Sheets1").Range("A6").Activate
'Line 2
Range(ActiveCell, ActiveCell.End(xlDown).End(xlToRight)).Select
'Line 3
Range(ActiveCell, Cells(ActiveCell.End(xlDown).Row, ActiveCell.End(xlToRight).Column)).Select
'Line 4
Range("A6", Range("A6").End(xlDown).End(xlToRight)).Select