External Links and OFFSET

  • Thread starter Thread starter BUDDY
  • Start date Start date
B

BUDDY

I have a workbook that links to another, but requires the
second one to open in order to update. Here is the
kicker: it is true for only some cells. The only
commonality of the troublesome cells is that I use the
OFFSET function. HELP?!

TIA
 
Here is an example.

=SUM(OFFSET('[SHA ACCOUNTS.xls]DATA'!$CJ$677,0,0,1,-C4))


Thanks!
 
Here is an example.

=SUM(OFFSET('[SHA ACCOUNTS.xls]DATA'!$CJ$677,0,0,1,-C4))
...

Since you want cells in row 677 from somewhere to the left of col CJ to col CJ,
this could be rewritten as the *array* formula

=SUM((COLUMN(INDIRECT("A:CJ"))>=COLUMN(INDIRECT("CJ"))-C4)
*IF(ISNUMBER('[SHA ACCOUNTS.xls]DATA'!$A$677:$CJ$677),
'[SHA ACCOUNTS.xls]DATA'!$A$677:$CJ$677))
 

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 Function 1
relative offset to a named cell 3
OFFSET with a condition 0
Excel Typed text appears in wrong cell 0
Event recognition. 6
Error in Function OFFSET 5
Offset with a link 2
Mapping integers to strings 5

Back
Top