「ダウンロード」メニューの CSV (Shift JIS) を選ぶとダイアログが表示され、ダウンロードリンクをクリックすると SJIS 形式で DL できる。 動作確認は Chrome でしかしてない。 download.gs: function onOpen() { const spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); const entries = [{ name : 'CSV (Shift JIS)', functionName : 'downloadSJIS_CSV' }]; spreadsheet.addMenu('ダウンロード', entries); } function downloadSJIS_CSV() { // 開いてるシートのデータを取得 const sheet = SpreadsheetApp.getA
