使用 Google Apps 脚本在 Google 表格中插入表情符号

问题描述 投票:0回答:1

我想在 Google 表格的各个单元格中插入绿色圆圈、黄色圆圈、红色圆圈或蓝色圆圈表情符号(基于项目状态)。我想使用 Google Apps 脚本来执行此操作。您能帮我解决这个请求吗?预先感谢您。

google-sheets google-apps-script emoji
1个回答
0
投票
function addingEmojiToSpreadsheetCells() {
  const ss = SpreadsheetApp.getActive();
  const sh = ss.getSheetByName("Sheet0");
  sh.getRange("A1").setValue(`Personally is don't like using \u{1F601}`)
}
© www.soinside.com 2019 - 2024. All rights reserved.