I'm wondering whether it is possible to manipulate multiple cells in a range at the same time.
EG
I can edit one cell rng(1).Formula or rng(5).Value
but is it possible to select a range within that range
rng(1 - 5)??
EG
Code:
Dim rng As Range
Set rng = Range(Cells(1, 1), Cells(4, 4))
I can edit one cell rng(1).Formula or rng(5).Value
but is it possible to select a range within that range
rng(1 - 5)??