Created
May 23, 2019 12:40
-
-
Save pplog/c2fb745c680b538a34bb3c081d3172a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function JumpToDefinition() { | |
// 現在のスプレッドシートを取得 | |
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); | |
// 現在のシートを取得 | |
var sheet = spreadsheet.getActiveSheet(); | |
// 参照元のセルの位置を取得する | |
var value = sheet.getCurrentCell().getFormula().replace("=",""); | |
//該当のセルに移動する | |
var objRange = sheet.getRange(value); | |
objRange.activate(); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
これは何?
エクセルだと「 ⌘ + { 」で動作するアレを、Google スプレッドシートでもやりたくて書いたやつです。
使い方
お願い
Google スプレッドシートにも標準機能であるなら教えてほしい