• 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.

expressing a cell from another reference

is it possible to express a cell ,say a2, by using a1 only.

eg if i want a2+b1-c1 , i can write as... a(1+1)+b1-c1.


kindly help
 
Hi Nayak ,


In Excel , any cell address can be expressed in terms of another cell address , but not in the way you have indicated. A function called OFFSET is used for this purpose ; check out its help in Excel.


For instance , if you write the formula :


=OFFSET($A$1,1,0)


you are accessing the contents of cell A2.


Narayan
 
You can also use the Indirect() function

Like:
Code:
=INDIRECT("A"&(1+1))+B1-C1
 
Back
Top