About Range.Address

  • Thread starter Thread starter serdar
  • Start date Start date
S

serdar

Range("c5") = Range("a1").Address

puts,

$A$1

to c5. How to put,

A1

to c5?
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top