How to copy value from every nth column with INDEX function?

Jermine

New Member
Joined
Feb 17, 2021
Messages
21
Office Version
  1. 2010
Platform
  1. Windows
Hi guys, I need a help in solving the below problem.

I would like to return the cell value from every 3rd column, but having an issue with OFFSET function as it does not work with a closed workbook.
Knowing that INDEX function would be an alternative, but I have no idea with it, can someone share an example with me pls?

For an example, I wanna copy I4, L4 O4 U4 and so on, which is every 3rd column from the previous selection.

1632049932410.png
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Assuming that the formula is going into consecutive columns, something like this.
Excel Formula:
=INDEX($I$4:$U$12,1,INT((COLUMNS($A2:A2)-1)*3+1))
The reference to A$2:A2 should be changed to the first cell that the formula is going into so that it doesn't error if rows / columns are inserted or deleted.
 
Upvote 0
Solution
You are the best!
So simple answer, it works in google sheets too.
Thank you!!!
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,044
Members
449,063
Latest member
ak94

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