gpt4 book ai didi

google-apps-script - 使用 Google Sheets 脚本,为什么我的 if 语句在比较单元格值时总是返回 false?

转载 作者:行者123 更新时间:2023-12-02 19:35:40 25 4
gpt4 key购买 nike

我需要比较两个单元格值并在它们不同时对其进行操作。然而,在比较单元格内容时,我的“if”语句总是返回 false,我不明白为什么:

function onEdit() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName('Sheet1'); // apply to sheet name only
var testvalues = sheet.getRange('A1:A2').getValues(); // array of values to be tested
var testvalue1 = testvalues[0]; // The contents from A1
var testvalue2 = testvalues[1]; // The contents from A2
var test1 = testvalue1 == testvalue2; // True False test
var test2 = testvalue1 === testvalue2;// True False test
Browser.msgBox(testvalue1 + " and " + testvalue2 + " being the same is " + test1 + " and " + test2); // Sentence revealing outcome
};

无论单元格 A1 和 A2 的内容是什么(空、数字、文本、不同),test1 和 test2 始终返回 false。如果我将测试值编辑为:

  var testvalue1 = "We are the same value";
var testvalue2 = "We are the same value";

  var testvalue1 = testvalues[0];
var testvalue2 = testvalues[0];

然后突然测试都按预期返回 True。谁能告诉我我在这件事上错过了什么,这太令人愤怒了?目前 A1 和 A2 中的值是 1(在我可能被问到这个问题之前)。

最终目标是使用边框来划分不同的单元格内容。我的其余部分工作得很好,但我已将问题与上述概念隔离。

最佳答案

答案:

.getValues() 方法返回一个二维数组,因此您没有正确引用数组中每个单元格内的值。

更多信息:

假设 A1A2 都包含字符串 "THIS"。运行以下行:

var testvalues = sheet.getRange('A1:A2').getValues();

将数组[[THIS], [THIS]]分配给testvalues

代码修复:

您需要更改:

var testvalue1 = testvalues[0]; // The contents from A1
var testvalue2 = testvalues[1]; // The contents from A2

至:

var testvalue1 = testvalues[0][0]; // The contents from A1
var testvalue2 = testvalues[1][0]; // The contents from A2

引用文献:

关于google-apps-script - 使用 Google Sheets 脚本,为什么我的 if 语句在比较单元格值时总是返回 false?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61062937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com