Bring info in every 6th from another workbook

ozbeachbum

Board Regular
Joined
Jun 3, 2015
Messages
161
Office Version
  1. 2021
Platform
  1. Windows
Hi All,
I am endeavouring to bring in the value from the cell in every 6th row in another workbook, I have tried the formula below without any success.

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

Any assistance would be greatly appreciated.
Cheers,
Dave.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try this
Excel Formula:
=OFFSET('[02 REG CHR securities.xlsx]Securities Info'!$BX$75,(ROW('[02 REG CHR securities.xlsx]Securities Info'!BX1))*6-1,0)

If, I am not wrong here, the problem I see is you are referring to cell BX1 which gives 1
then you are subtracting 1 from the answer i.e. 1-1=0
then you are multiplying it by 6
so anything multiplied by 0 will give you error
 
Upvote 0
Can you

No, anything divided by 0 will give an error. 0 times is anything =0 always.

@ozbeachbum can you please writedown the address of cell you have the formula?
Thanks, I stand corrected
it will give 0 & no error. thanks again

but, still it won't work I reckon coz the result will always be zero
1-1*6=0

Or is there anything, I am not getting
 
Upvote 0
Thanks, I stand corrected
it will give 0 & no error. thanks again

but, still it won't work I reckon coz the result will always be zero
1-1*6=0

Or is there anything, I am not getting
You can still write OFFSET(cell_referance, 0 0). It will return the same cell reference since there are 0 offsets in rows and columns.
 
Upvote 0
You can still write OFFSET(cell_referance, 0 0). It will return the same cell reference since there are 0 offsets in rows and columns.
Yes, exactly
but it won't offset anything
 
Upvote 0
Hi,
Thanks for the feed back.
I don't know why but my original formula;
=OFFSET('[02 REG CHR securities.xlsx]Securities Info'!$BX$75,(ROW('[02 REG CHR securities.xlsx]Securities Info'!BX1)-1)*6,0)
works now, not sure what was going on.
 
Upvote 0
Maybe you need to keep 02 REG CHR securities.xlsx file open. Or automatic calculation was turned of. I don't have enough knowadge about this but OFFSET is a volatile function. Which means it recalculates each time you open a file. MAy be the formula stop working if auto-calculation was turned off or file was not opened.
 
Upvote 0

Forum statistics

Threads
1,216,040
Messages
6,128,454
Members
449,455
Latest member
jesski

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