我正在尝试编写一个脚本,该脚本将从脚本中链接到的变量中读取单元格的位置,然后突出显示该单元格。变量是" ASAp"
这是我尝试做的一个例子,突出显示ASAp变量......
for (var i = 0; i <= numRows - 1; i++)
{
var ASAp = ASAP_val[i][0];
var days_left = days_left_values[i][0];
if (ASAp == "ASAP"||ASAp == "asap"||ASAp == "ASAp"||ASAp == "ASap")
{
var reminder_name = reminder_info_values[i][0];
var the_requester = requster[i][0];
//set the active cell to be the cell that contains the word ASAP, asap, ASAp, ASap
//then change the background color of that cell to yellow
SpreadsheetApp.getActiveSpreadsheet().getActiveSheet().setActiveSelection('ASAp').setBackground("yellow");
如果这是不可能的,或者它很难理解我要问的是什么......
我正在尝试编写一个脚本,该脚本将读取整个表单,格式化为日期&#34; m / d / yyyy&#34;或单词,并突出显示表格中的日期或单词。