Skip to content

Instantly share code, notes, and snippets.

@fonnesbeck
Created March 25, 2010 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fonnesbeck/342991 to your computer and use it in GitHub Desktop.
Save fonnesbeck/342991 to your computer and use it in GitHub Desktop.
Convert date to SQLite in Numbers
=CONCATENATE(YEAR(F2), "-", IF(LEN(MONTH(F2))<2, "0",), MONTH(F2), "-", IF(LEN(DAY(F2))<2, "0",), DAY(F2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment