Hi, everyone.
I'm calling Excel from Access.
Is there a way to convert
.Range("B1:D1,B4:D4").Select
into an Excel function using Cells() instead.
.Range(cells(w, x), cells(y, z))
works for solid ranges but "B1:D1,B4:D4" is selected on non consecutive rows.
.Range(cells(a, b):cells(c,d) ...