P paramnayak Member May 31, 2012 #1 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
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
N NARAYANK991 Excel Ninja May 31, 2012 #2 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
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
Hui Excel Ninja Staff member May 31, 2012 #3 You can also use the Indirect() function Like: Code: =INDIRECT("A"&(1+1))+B1-C1