I would like to get a range of the first column from a larger range. For example:
If the range is $E$9:$I$259, the result should be $E$9:$E259
How can I achieve this?
By using the columns collection of the range object like so:
Range("$E$9:$I$259").Columns(1)
Dim TempA() , A as Range : TempA = Split(A, ",") : QuickSort (TempA) : Set A = A.Parent.Range(Join(TempA, ",")).Address : Set Col= A.columns(1) .Range("$E$9:$I$259").Columns(1) ?