Try
Code:ActiveCell.Resize(1,4).Select
One way:
Code:Range(ActiveCell, ActiveCell.Offset(0, 3)).Select
Sorry, that wasn't very clear in your question.Thanks Joe, but that selects the cells in between. I need only the two non-adjacent cells.
Dim rng As String
rng = ActiveCell.Address & ", " & ActiveCell.Offset(0, 3).Address
Range(rng).Select
Range("E2, G2").Select (This is what I want to do, but without specific cell addresses)
Range (ActiveCell), Range(ActiveCell).Offset(0, 3).Select
What syntax can I use to do this?
(hope this makes sense!)