M
mark
hello.
Is there any way to universally set the rowabsolute and
the columabsolute parameters of a range's address property
to false?
In case I was unclear writing that, this is what I mean:
dim rgThing as range
dim stFormula as string
set rgThing = Range("a1")
stFormula = rgThing.address
(rowabsolute:=false,columnabsolute:=false)
The default seems to be to use the absolute referencing,
which ends up as '$a$1', and generally want it to be 'a1'
Can I reset the default somewhere?
Thanks.
Is there any way to universally set the rowabsolute and
the columabsolute parameters of a range's address property
to false?
In case I was unclear writing that, this is what I mean:
dim rgThing as range
dim stFormula as string
set rgThing = Range("a1")
stFormula = rgThing.address
(rowabsolute:=false,columnabsolute:=false)
The default seems to be to use the absolute referencing,
which ends up as '$a$1', and generally want it to be 'a1'
Can I reset the default somewhere?
Thanks.