I'm trying to select individuals cells with r1c1 notation but I don't know how, and so far I've found how to do it. What I want to achieve is something like this
Sheets(1).Range("A1,C1,F1,H1").Select but I want to do this with the r1c1 notation.
Sheets(1).Range(Cells(1,1),Cells(1,3)...).Select but with this I can only select a range between the to cells, and I can't add more than two without an error
is there a way to do this with the range command and c1r1 notation?