Created
February 25, 2021 12:26
-
-
Save josemarcosrf/4a48b3bc4fe6491718afae90f2101c04 to your computer and use it in GitHub Desktop.
Google Docs (sheets, docs, etc) helper functions
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
/** | |
* Returns the URL of a hyperlinked cell, if it's entered with hyperlink command. | |
* Supports ranges | |
* @param {A1} reference Cell reference | |
* @customfunction | |
*/ | |
function linkURL(reference) { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var formula = SpreadsheetApp.getActiveRange().getFormula(); | |
var args = formula.match(/=\w+\((.*)\)/i); | |
try { | |
var range = sheet.getRange(args[1]); | |
} | |
catch(e) { | |
throw new Error(args[1] + ' is not a valid range'); | |
} | |
var formulas = range.getFormulas(); | |
var output = []; | |
for (var i = 0; i < formulas.length; i++) { | |
var row = []; | |
for (var j = 0; j < formulas[0].length; j++) { | |
var url = formulas[i][j].match(/=hyperlink\("([^"]+)"/i); | |
row.push(url ? url[1] : ''); | |
} | |
output.push(row); | |
} | |
return output | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment