Offset referenced cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Sheet1 A1 shows: =Sheet2!D40

What I’m trying to do is: Offset (Sheet2!D40,-15,0)

I want to do this on Sheet 1 off of cell A1: Offset (Cell referenced in
cell A1,-15, 0).

Is this possible?
 
I did -- I get #REF! I tried it with different rows -- not working! If I
put A1 in quotes, it works but it's pulling the data from Sheet!1 A1, not
from Sheet!2 D40.
 
For Indirect() to work you have to a have a text value that looks like a cell
address or a range address. Thus, if cell A1 contains =Sheet2!D40, you are
simply referencing that cell.

A1 *should* read: Sheet2!D40

Now you can use =Offset(Indirect(A1),-15,1)
 
Ohhhhh! Well that works when I take out the =, but I have over a hundred
formulas to change. I can use a helper column and edit/replace, but is there
an easier wasy to accomplish what I'm trying to do?
 
Be sure to select all the cells that are SUPPOSED to have text, but have a
formula instead. SELECT ONLY THOSE CELLS. Now do a Find & Repalce,
replacing the equal sign with nothing.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top