function myFunction() {
var ss = SpreadsheetApp.getActiveSpreadsheet()
var list = ss.getSheetByName("Тест")
var a = list.getRange(2, 1).getValue()
list.getRange(3, 1).setValue(a)
}
getRichTextValue()
, возвращаемый объект имеет метод getLinkUrl()
.cell.getRichTextValue().getLinkUrl();
/**
*
* @param {GoogleAppsScript.Spreadsheet.Range} ref
*/
function extractLink_(ref) {
const richTextValues = ref.getRichTextValues();
return richTextValues.map((row) =>
row.map((cell) => {
return cell.getLinkUrl();
}),
);
}