• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

INDIRECT ADDRESS

3G

Member
Hello!

Can someone please explain the use of these two functions? I am having a hard time understanding them.


Thanks
 
Indirect:

Indirect takes the text and tries to convert it to a valid address

eg: =INDIRECT("Sheet2"&"!"&"G6")

It can be used where ever an address is required,

like =Sum(Indirect("Sheet2"&"!"&"G6:G10"))


Address:

Converts supplied Column and Row numbers to a valid address

=ADDRESS(10,5) will return $E$10

=ADDRESS(10,5,,,"Sheet2") will return Sheet2!$E$10
 
Back
Top