Offset formula linked to another workbook will not recalculate automatically

Status
Not open for further replies.

ozbeachbum

Board Regular
Joined
Jun 3, 2015
Messages
161
Office Version
  1. 2021
Platform
  1. Windows
Hi all,
A follow on from my last post although I got the formula;

=OFFSET('[02 REG CHR securities.xlsx]Securities Info'!$BX$75,(ROW('[02 REG CHR securities.xlsx]Securities Info'!BX1)-1)*6,0)

to work, it does not recalculate unless the linked workbook '[02 REG CHR securities.xlsx] is open.
I have done some research and apparently this is the case when using OFFSET, therefore I tried INDEX as suggested in the article;

=INDEX('[02 REG CHR securities.xlsx]Securities Info'!$BX$75,(ROW('[02 REG CHR securities.xlsx]Securities Info'!BX1)-1)*6,0)

I though this solved the issue as it worked, but only in the first cell, when I copied it down, I get an invalid reference or error.
It seams obvious that it is how it calculates the rows after the first one, I tried some adjustments but to no avail.
Any thoughts would be greatly appreciated.
Dave.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
I think INDEX needs a range to pick rows from. Try define a range like:

Excel Formula:
=INDEX('[02 REG CHR securities.xlsx]Securities Info'!$BX$75:$BX$135,(ROWS($A$1:$A1)-1)*6,0)
 
Upvote 0
Also, right side needs +1 because INDEX function won't work with 0 index.

Excel Formula:
=INDEX('[02 REG CHR securities.xlsx]Securities Info'!$BX$75:$BX$135,((ROWS($A$1:$A1)-1)*6)+1)
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,215,671
Messages
6,126,133
Members
449,294
Latest member
Jitesh_Sharma

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top