I need to select multiple ranges.
This is my code to select the first range, but now I need to edit this line to add the second range.
Range(ActiveCell.Offset(-1, -8), ActiveCell.Offset(-1, -2)).Select
Range("A:G,T:W") is what I'm trying to grab dynamically.
Update: VincentG gave me code
Intersect(ActiveCell.EntireRow, Range("A:G,T:W")).Copy
I've copied the range, but now I need to paste it in the row below, same columns. I tried to use the same code
Intersect(ActiveCell.EntireRow, Range("A:G,T:W")).PasteSpecial (xlPasteValues)
to paste but it gives me the error
"This action won't work on multiple selections"