P
(PeteCresswell)
MsgBox Range("H3:H14,L3:M14").Address(ReferenceStyle:=xlR1C1) yields
-------------------------
R3C8:R14C8,R3C12:R14C13
-------------------------
but the VBA coding
---------------------------------------
Range(R3C8:R14C8, R3C12:R14C13).Select
---------------------------------------
doesn't even get past the parser - the line turns red and that's the end of it.
Intuitively,
-------------------------
R3C8:R14C8,R3C12:R14C13
-------------------------
but the VBA coding
---------------------------------------
Range(R3C8:R14C8, R3C12:R14C13).Select
---------------------------------------
doesn't even get past the parser - the line turns red and that's the end of it.
Intuitively,