function JKHAScript() {
//get the first sheet of the currently active google spreadsheet
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
var NumRows = sheet.getMaxRows();
var NumColumns = sheet.getMaxColumns();
//loop through each column skipping the first row, (j,i) is the (row#, column#)
for (let i = 1; i <= NumColumns; i++) {
var LargestCell = sheet.getRange(2,1);
for (let j = 2; j <= NumRows; j++) {
let IndexCell = sheet.getRange(j, i);
//one pass through each column, grabs the largest value
if (IndexCell.getValue() > LargestCell.getValue()) {
LargestCell = IndexCell;
}
}
//after pass, the cell with the largest value gets the border formatting
LargestCell.setBorder(true,true,true,true,null,null, "yellow", SpreadsheetApp.BorderStyle.SOLID_MEDIUM)
}
}
要在 google 工作表上运行脚本:打开工作表,转到工具选项卡,单击脚本编辑器。只将您信任的代码粘贴到编辑器中!!单击页面顶部的运行以在您当前打开的任何工作表上执行脚本。应该看起来像这样:
*原来的*
如果我误解了,请原谅我,但我相信您的问题可以使用google app scripts解决。我不确定您要执行哪种格式,但这里有一个简单的示例,它在 11 x 4 的小纸上运行,带有随机数。当然,您需要修改它以在您的工作表上工作,并执行您希望应用的任何格式。
function JKHAScript() {
//get the first sheet of the currently active google spreadsheet
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
//loop through each column skipping the first row, (j,i) is the (row#, column#)
for (let i = 1; i <= 4; i++) {
var LargestCell = sheet.getRange(2,1);
for (let j = 2; j <=11; j++) {
let IndexCell = sheet.getRange(j, i);
//one pass through each column, grabs the largest value
if (IndexCell.getValue() > LargestCell.getValue()) {
LargestCell = IndexCell;
}
}
//after pass, the cell with the largest value gets the border formatting
LargestCell.setBorder(true,true,true,true,null,null, "yellow", null)
}
}
*编辑*
谢谢你的澄清!以下是对脚本的一些快速编辑,以使其在任意行和列的工作表上运行,将具有最大值的单元格格式化为中等粗细的黄色边框。快速把它放在一起,但我希望它有帮助!
要在 google 工作表上运行脚本:打开工作表,转到工具选项卡,单击脚本编辑器。只将您信任的代码粘贴到编辑器中!!单击页面顶部的运行以在您当前打开的任何工作表上执行脚本。应该看起来像这样:
*原来的*
如果我误解了,请原谅我,但我相信您的问题可以使用google app scripts解决。我不确定您要执行哪种格式,但这里有一个简单的示例,它在 11 x 4 的小纸上运行,带有随机数。当然,您需要修改它以在您的工作表上工作,并执行您希望应用的任何格式。
跑步前
运行后
这是一个缓慢而蹩脚的例子。您可以在此处找到有关 google 应用脚本的更多信息。祝我的朋友编写脚本好运!