What does Address(external:=True) mean?

  • Thread starter Thread starter ExcelMonkey
  • Start date Start date
E

ExcelMonkey

What does the data in the bracket denote?

rng.Address(external:=True)

I usually only use the .Address property without any additional information.
MSDN states "Optional Variant. True to return an external reference. False
to return a local reference. The default value is False."

What is an external/local reference?


Thanks

EM
 
Try this in the immediate window:

?activecell.address
then
?activecell.address(external:=true)

And you'll see the difference.
 

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