OFFSET command and linked documents

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

Guest

I am currently using the OFFSET command to jump from one column to the
next if I increase the number in Cell A2:-


=OFFSET('[Time 05.xls]Act 05'!$D$57,0,$A$2-1)


What this does is returns the value in D57, if number 1 is in cell A2.
If I change the number in cell A2 to 2, it returns the value in E57,
etc.


The problem I have is that it is linked to another spreadsheet and if I
don't have the other spreadsheet open it returns a #VALUE. Thought I
could get round this by using INDEX, but can't quite work out how this
works. Can anyone help?
 
Try...

=INDEX('[Time 05.xls]Act 05'!$D$57:$IV$57,$A$2)

Hope this helps!
 
Great - worked. Thanks.

Domenic said:
Try...

=INDEX('[Time 05.xls]Act 05'!$D$57:$IV$57,$A$2)

Hope this helps!

DawnS said:
I am currently using the OFFSET command to jump from one column to the
next if I increase the number in Cell A2:-


=OFFSET('[Time 05.xls]Act 05'!$D$57,0,$A$2-1)


What this does is returns the value in D57, if number 1 is in cell A2.
If I change the number in cell A2 to 2, it returns the value in E57,
etc.


The problem I have is that it is linked to another spreadsheet and if I
don't have the other spreadsheet open it returns a #VALUE. Thought I
could get round this by using INDEX, but can't quite work out how this
works. Can anyone help?
 

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

Similar Threads

OFFSET 1
Offset 2
Mapping integers to strings 5
VLOOKUP and OFFSET 3
Offset function 7
Vlookup to reference offset 1
What's causing error message? 4
XL2002 - OFFSET function and LARGE function 3

Back
Top