英文:
how can I replace an empty value in a cell by a value from an other cell?
问题
I can help you with the translations. Here are the translated code parts:
我想要做三件简单的事情:
1/ 检查列N中的单元格是否为空。
2/ 如果是空的,我想要将单元格N的值设置为同一行中单元格Q的值。
3/ 我想要将N单元格的颜色变成红色。
我面临两个问题:
1/ A1.createTextFinder("") 不接受("") 作为空单元格的值描述。
2/ 我不知道如何从与N空单元格相同行的列Q调用值。
这是我找到并开始修改的代码:
function STARTDATE() {
var PROsheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("0_LISTE PROJETS");
var A1 = PROsheet.getRange("N3:N");
A1.createTextFinder("").replaceAllWith("Q");
}
我还在不同的电子表格上使用了一个代码来删除列,当列A有一个空单元格时。我想这个代码可以很容易地从“删除行”修改为“复制来自其他行的值”,但迄今为止我还没有能够理解它是如何工作的...
如果可能的话,我希望解决方案基于这个代码,而不是另一个,因为我认为它可以帮助我更深入地理解基于相同类型的代码的不同功能。
代码本身:
function myFunction() {
var PLsheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("PLANNING_DATA");
let rows = PLsheet.getDataRange();
let numRows = rows.getNumRows();
let valuesdelete = rows.getValues();
let rowsDeleted = 0;
for (var i = 0; i <= numRows - 1; i++) {
let row = valuesdelete[i];
if (row[0] == "")
{
PLsheet.deleteRow((parseInt(i)+1) - rowsDeleted);
rowsDeleted++;
}
}
}
希望这对您有所帮助!
英文:
I Would like to do 3 simple things :
1/ check if a cell in the column N is empty.
2/ If it is, I would like to set in the cell N the value of the cell Q of the same line
3/ I wan't to turn this N cell into red
I'am facing two problems :
1/ A1.createTextFinder("") wont accept ("") as a value describing an empty cell
2/ I don't know how to call the value of the column Q from the same line as the N empty cell.
here is the code I find and start to modify
function STARTDATE() {
var PROsheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("0_LISTE PROJETS");
var A1 = PROsheet.getRange("N3:N");
A1.createTextFinder("").replaceAllWith("Q");
}
I also use on a different spreadsheet a code to delete line when the column A have an empty cell. I guess this code can be easy to modify from "delete line" to "copy the value from an other row", but I haven't been able to understand how it works so far...
if it is possible, I would like the solution to be based on this code more them on the other one, because I think it can help me to go deeper in my understanding to see different fonction based on the same type of code
the code itself :
function myFunction() {
var PLsheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("PLANNING_DATA");
let rows = PLsheet.getDataRange();
let numRows = rows.getNumRows();
let valuesdelete = rows.getValues();
let rowsDeleted = 0;
for (var i = 0; i <= numRows - 1; i++) {
let row = valuesdelete[i];
if (row[0] == "")
{
PLsheet.deleteRow((parseInt(i)+1) - rowsDeleted);
rowsDeleted++;
}
}
}
thanks for your help !
答案1
得分: 3
Sure, here's the translated code part:
function replaceMTSinNwithvalueInQ() {
const ss = SpreadsheetApp.getActive();
const sh = ss.getSheetByName("PLANNING_DATA");
const vs = sh.getRange(2, 14, sh.getLastRow() - 1, 4).getValues();
let bs = sh.getRange(2, 14, sh.getLastRow() - 1).getBackgrounds();
let o = vs.map((r, i) => {
if (r[0] === "") {
bs[i][0] = "#ff0000"; // 设置背景颜色为红色
return [r[3]]; // 设置值
} else {
return [r[0]]; // 设置值
}
});
sh.getRange(2, 14, o.length, o[0].length).setValues(o).setBackgrounds(bs);
}
Please note that I've translated the code and comments inside it, while keeping the code structure intact.
英文:
function replaceMTSinNwithvalueInQ() {
const ss = SpreadsheetApp.getActive();
const sh = ss.getSheetByName("PLANNING_DATA");
const vs = sh.getRange(2,14,sh.getLastRow() - 1,4).getValues();
let bs = sh.getRange(2,14,sh.getLastRow() - 1).getBackgrounds();
let o = vs.map((r,i) => {
if(r[0] === "") {
bs[i][0] = "#ff0000";//color backgrounds in red
return [r[3]];//set value
} else {
return [r[0]];//set value
}
})
sh.getRange(2,14,o.length,o[0].length).setValues(o).setBackgrounds(bs);
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论