i dont know if what im trying to do is possible,
i want to manipulate data from another sheet for example:
for example on sheet2 i would use the following formula
=Sheet1!A1+Sheet1!A2
what i want to do is have a cell that contains the text Sheet1! and then have a formula that uses the text in that cell such like
sheet2 a1 = Sheet1
formauls in Sheet2 are like the following
=A1!A1+A1!A2
is this possible
thanks
You can use the
INDIRECTformula, which will take a string an convert it into a usable range. In your case, you can try puttingSheet1in cellA1onSheet2, and in in cellA2onSheet2, put the formula:This will take the value in
A1(which isSheet1), concatenate it with!A1and return the value at the string created –Sheet1!A1.You can also work backwards from a cell reference to a string by using the
ADDRESSformula, which takes (at a minimum) a row number and a column number and returns the text representation of the cell reference. For example:will return the value
$A$1in string form, which you could then pass intoINDIRECTto get the value (this is a technique that can be be used to reference cells in a flexible/dynamic way).