Copying every nth value from cell and posting into a vertical column

legolas97

New Member
Joined
May 24, 2022
Messages
30
Office Version
  1. 365
Platform
  1. Windows
Hi, I've tried using the index function and the offset function without much success.

I'm trying to copy cell value of L4, P4, T4, X4, etc all the way up to EB4 and paste it in a vertical column using a formula.
I need to do this again for L5, P5, T5, X5, etc.

I've done it manually for now, but I want to create a template so that I don't have to repeatedly perform this task.
Debug 12.png


Please find the pictures attached and help me out!

In the picture above I want to get every highlighted value out and get it out in a column like I have done manually in this example ^
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Place this formula in cell C5 and copy down:
Excel Formula:
=OFFSET($A$1,0,(ROW()-5)*4,1,1)
 
Upvote 0
Solution
Here's another idea...sounds as if you want to consider only certain columns and then transpose them:
Book1
ABCDEFGHIJKLMNOPQ
1JanFebMarAprMay
252211011125221131415522116171852211920215221
312345
4abcde
5uvwxy
6
7
8Jan52211au
9Feb52212bv
10Mar52213cw
11Apr52214dx
12May52215ey
Sheet1
Cell Formulas
RangeFormula
A8:E12A8=TRANSPOSE(FILTER(A1:Q5,MOD(COLUMN(A1:Q1)-1,4)=0))
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,618
Members
449,092
Latest member
amyap

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