Using Autofill with Offset()

Kentcomp

New Member
Joined
May 10, 2011
Messages
2
I need to create a series of text entries in Column B (rows 3, 4, 5, ...) pulling from a series of tables that are stored in column J on every 7th row.

For example my data is:

J3 Foo
J10 Bar
J17 Hello
J24 World

...and I'd like the entries to appear in B3 as Foo, B4 as Bar, B5 as Hello, B6 as World, etc.

I've tried a number of the formulas that I have found on the Internet and particularly in MrExcel but they either haven't worked or are overly complicated (and still haven't worked). I'd like to Autofill the formula down from B3 to B4 to B5, etc. Can someone please tell me what formula I need to do this? Your help is greatly appreciated.

Details:
  • I am running Excel 2010 on Windows
  • I have to share the spreadsheet with a Mac user so I'd just like a formula that doesn't require VBA.
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Welcome to the baord...

Try

=INDEX(J:J,((ROWS(A$1:A1)-1)*7)+3)

DO NOT CHANGE A$1:A1 - this has nothing to do with the location of your data.
7 = Inteveral (every 7 rows)
3 = Row to begin in (J3)


Hope that helps.
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,553
Members
452,928
Latest member
101blockchains

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