0
0

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 3 years have passed since last update.

GAS 今のところできるもの~スプレッドシート編

Last updated at Posted at 2019-11-27

function s(){

var sheet = SpreadsheetApp.getActiveSpreadsheet(); //アクティブシートを取得
var a =sheet.getActiveRange().getValue(); //アクティブな範囲の値を取得
Browser.msgBox(a);//値をポップアップ表示

}

function henkan() { //オブジェクトに割り当てて使用
var targetSheet = SpreadsheetApp.getActiveRange(); // ①変換したい文字のある列や行をクリックしてアクティブにする
var finder = targetSheet.createTextFinder("あ"); // ②あを検索する
var cnt = finder.replaceAllWith("い"); // ③いに変換する
SpreadsheetApp.getUi().alert(cnt + "件置換しました。"); //④終了を伝える。
} (編集済み)

↑範囲指定したセルにある「あ」を「い」に置換するgas
変換したいセルとしたくないセルがある場合に使用するために作成

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?