I’m having multiple sheets in an excel file
sheet1 contains some data from A1 to A100
sheet2 in this sheet row1 contains the data with numeric value
in sheet2 if A1 contains the 0 A3 should be the value of A1 of sheet1
in sheet2 if A1 contains the 30 A3 should be the value of A1+30 that is A31 of sheet1
Any idea how to get the described behavior?
It sounds like you’re looking for something involving
INDIRECT. Not sure what your data looks like, but from what it sounds like, you would want to put a formula like this inA3inSheet2:That will get the value in
A1, add 1 (0->1, 30->31) and then concatenate it with theSheet1!Astring, giving you a reference to a cell on the first sheet. UsingINDIRECTthen returns the value at that cell.