I simply need to resize my selection from selected range to first sheet column (basically need to select everything on the left).
Let's assume the selection is C3:E5
then I want to extend my selection to A3:E5
. Let's assume, again, the selection is AE12:AF34
then I want to extend my selection to A12:AF34
.
If Not SearchRange Is Nothing Then
SearchRange.Offset(0, -1).Select
Range(Selection.Offset(640, Selection.End(xlToLeft)), Selection.Offset(0, 0)).Select
'What to do here ^^^
End If
Note: if possible, I prefer to avoid using select, accordingly to this guide.