Googleスプレッドシートに画像を一括で挿入(IMAGE関数)
ほぼこちらのスクリプトです!笑
https://www.katsushikatech.net/entry/create-file-list-with-google-apps-script
↑
ありがとうございます!
そして、IMAGE関数に貼り付けるのはファイルIDなので、
URLではなくIDを取得する内容に変更します。
用参考
https://developers.google.com/apps-script/reference/drive/file
元
list.push([file.getName(), file.getUrl()]);//名前とURLを表示します
変更(ID取得)
list.push([file.getName(), file.getId()]);//名前とIDを表示します★
さらに変更(IMAGE関数に)
list.push([file.getName(), '=IMAGE("http://drive.google.com/uc?
export=view&id='+file.getId()+'")']);//名前とIMAGE関数式を表示します★
以上。
https://www.katsushikatech.net/entry/create-file-list-with-google-apps-script
↑
ありがとうございます!
そして、IMAGE関数に貼り付けるのはファイルIDなので、
URLではなくIDを取得する内容に変更します。
用参考
https://developers.google.com/apps-script/reference/drive/file
元
list.push([file.getName(), file.getUrl()]);//名前とURLを表示します
変更(ID取得)
list.push([file.getName(), file.getId()]);//名前とIDを表示します★
さらに変更(IMAGE関数に)
list.push([file.getName(), '=IMAGE("http://drive.google.com/uc?
export=view&id='+file.getId()+'")']);//名前とIMAGE関数式を表示します★
以上。