About Range.Address

  • Thread starter Thread starter serdar
  • Start date Start date
Why should i use:
Range("A11?).Formula

when i can write:

Range("c5") = "=" & Range("a1").Address(0, 0) & "+" &
Range("a2").Address(0, 0)
 
You don't have to. As you have already noticed it will work with the Value
property (if no property specified for a range it is Value by default)

Regards,
KL
 
Back
Top