I'd like to grab the names in every person's name from this google spreadsheet and put it into a new column. The names will be every nth row.
Select Every nth Row To get the every 3rd (nth) row, we change the number to divide by to 3 (n). We can switch the filter on to filter on the MOD result required to show specific rows.
Simply do the following: Select the cell with the formula and the adjacent cells you want to fill. Click Home > Fill, and choose either Down, Right, Up, or Left. Keyboard shortcut: You can also press Ctrl+D to fill the formula down in a column, or Ctrl+R to fill the formula to the right in a row.
Alternatively, also try:
=filter(A2:A, mod(row(A2:A)+1,3)=0)
In B2 please try:
=offset(A$1,3*(row()-1)-2,)
As the formula is copied down the offset row relative to A1 increases by three, with no column offset. In the second (starting row) 3*(2-1)-2 is 1 so the A2 value is returned. In the second output row 3*(3-1)-2 returns 4, so the A5 value is returned, and so on.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With