Output cell every nth row

0

How can I output a cell's value every nth rows

Example every 3 rows:

enter image description here

google-sheets google-sheets-formula
2021-11-24 01:41:52
4

1

or you can do it with QUERY:

=QUERY(A2:A, "skipping 3")

enter image description here

2021-11-24 01:48:01
0

Put this formula in A2:

=ArrayFormula(FLATTEN(SPLIT(REPT(C2:C4&"♦︎",3),"♦︎")))
2021-11-24 02:06:27
0

use MOD:

=FILTER(A2:A, MOD(ROW(A2:A)-2, 3)=0)

enter image description here

2021-11-24 01:45:18

Hi, I want to do the opposite. I have the values in col B and I want to spill them in col A every nth row - if that makes sense.
bewix
0

Offset is relatively simple. To get an index that increases by 1 every three rows just ROUNDDOWN the ROW address by three

=OFFSET($C$2,ROUNDDOWN(ROW(A1),0)/3,0)
2021-11-24 02:53:35

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................