I want to define and copy a range of cells based on the value contained within a cell.
If cell W2 contains the entry "B6:B12", then the code will select that range and copy the contents into Column X
Sub RangeSel()
Dim rng As Range
Dim Sel As String
Sel = Range("W2").Value
Set rng = Range("Sel").Copy(Range(Range("X2"), Range("X2").End(xlDown)))
End Sub