所以我猜是sort if反向条件格式化?
我正在制作一个我自己的电子表格来合并我的所有任务,这些任务列在我们小组的任务电子表格中。到目前为止,我的电子表格工作正常,除了status列。
基本上,我想要它,所以当我在组的tasks电子表格中将任务变为绿色(更改字体颜色)时,电子表格中该任务旁边的单元格将显示"Done“。
发布于 2020-11-25 15:10:06
您可以使用应用程序脚本创建函数,并使用简单的触发器运行它。要创建应用程序脚本,请转到工具->脚本编辑器
简单触发器
示例函数:
/**
* The event handler triggered when editing the spreadsheet.
* @param {Event} e The onEdit event.
*/
function onChange(e){
//Select the active sheet
var activeSheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
//Select the active cell
var activeCell = activeSheet.getActiveCell();
//Note: I want to input the status next to the task's column
var taskrow = activeCell.getRow();
var statusCol = activeCell.getColumn() + 1;
//Check if font color is green then set the status column to Done
if(activeCell.getFontColor() == '#00ff00'){
activeSheet.getRange(taskrow,statusCol).setValue('Done');
}
//Check if font color is red then set the status column to Delayed
else if(activeCell.getFontColor() == '#ff0000'){
activeSheet.getRange(taskrow,statusCol).setValue('Delayed');
}
};
只要工作表的用户界面发生变化(如字体颜色),就可以触发onChange()方法。
在SpreadsheetApp中使用Range类的getFontColor(),你可以获得单元格的字体颜色(比如'#ffffff‘或’白色‘)。
然后,您可以在SpreadsheetApp中使用Range类的setValue()来设置单元格值
要了解有关SpreadsheetApp及其类的更多信息,请参阅此参考: https://developers.google.com/apps-script/reference/spreadsheet
要了解有关简单触发器和事件对象的更多信息,请访问:
https://developers.google.com/apps-script/guides/triggers
https://developers.google.com/apps-script/guides/triggers/events
要自动执行onChange(),需要将其添加到项目的触发器中
旁边的时钟图标打开当前项目的触发器
右下角单击[添加触发器
示例输出:
https://stackoverflow.com/questions/65005377
复制