0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

image関数で動的に画像を表示させる。

Posted at

最終行を取得する為にこんな感じのGASを書く。
function GetLastRow() {

var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('商品テーブル');
var last_row = sheet.getLastRow()
return last_row

}

こんな感じの関数をセルに入力
=ArrayFormula(IMAGE(INDIRECT("B2:B"&GetLastRow())))

B列の最終行までの画像URLがプレビューされる。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?