As the title says, I am seeking to copy a non-contiguous range of cells in columns that are identified by code using Lr (LastRow).
The following works, because only the range of B6:C37 and H6:H37 are copied.
Sub CopyNonContRange()
Range("B6:C37,H6:H37").Copy
End Sub
When using...