Thread
:
Addressing ranges
View Single Post
#
1
Posted to microsoft.public.excel.programming
Ron Rosenfeld[_2_]
external usenet poster
Posts: 1,045
Addressing ranges
Dim c as Range
Assuming c is a single cell range, and I want to write a value into
the adjacent column, is there any advantage/disadvantage to using
c.offset(0,1)
vs
c(1,2)
??
c(1,2) is more compact.
Reply With Quote
Ron Rosenfeld[_2_]
View Public Profile
Find all posts by Ron Rosenfeld[_2_]