UGA Boxxx

つぶやきの延長のつもりで、知ったこと思ったこと書いてます

【GAS】Date型をyyyy-MM-ddに整形したい

スプレッドシートで日付型のセルをyyyy-MM-ddに整形したい

調べるとGASのUtilities.formatDateを使うと良いことがわかった

developers.google.com

formatDate(date, timeZone, format)

使用例

var formattedDate = Utilities.formatDate(cell[0][1], "JST", "yyyy-MM-dd");

これでやりたいことができた

参考

https://blog.synnex.co.jp/google/gas-data-format