Formula to Get Every Nth Cell from a Column in Excel
Excel's Offset function can be used to get every 2nd cell or 3rd from a column.
=OFFSET(A2,(ROW()-1)*2,0)
In this formula A2 is the first cell of A column and 2 (Nth) is the number of cells to skip after that for the next cell to copy.
Paste this formula in desired column and drag down.
=OFFSET(A2,(ROW()-1)*2,0)
In this formula A2 is the first cell of A column and 2 (Nth) is the number of cells to skip after that for the next cell to copy.
Paste this formula in desired column and drag down.