Skip to content

Google Sheets

  • Formula bar: there isn’t one. Press enter or F2 to edit.
  • Moving rows: just drag it up/down by the row number anywhere you want.

I did this for mentoring when I had a table full of dates representing sessions. It would allow me to look at a single column to figure out when my next sessions were with everyone: Pasted image 20241227082916.png

=IF(MINIFS(C2:Z2, C2:Z2, ">=" & NOW()) = 0, "Not scheduled", MINIFS(C2:Z2, C2:Z2, ">=" & NOW()))

(this pulls dates from most columns in row 2, sees if they’re all in the past, and renders “not scheduled” if they are)

You can drag the blue circle at the bottom right of your selection to emit data into new cells. Some examples:

  • Write “January” in one row, then drag the circle.
  • Write “1” in one row and “2” beneath it to get incrementing numbers.
  • When it can’t find a pattern, it seems to just duplicate the value.