比较字符串或数字的非常基本的功能
Very Basic Function to compare strings or numbers
我想在我的 google sheet 中创建一个自定义函数,这将需要一些输入,请在下面比较它们是示例:
我知道这很简单,但是当我尝试保存这段代码时,出现以下错误。
Missing ; before statement. (line 6, file "Code")Dismiss
您的函数可以用 JavaScript 为 Google Apps 脚本编写:
function testFunction(A1,B1,C1) {
// check if all the three conditions are met
if (A1 == "Lion" && B1 == "Cheeta" && C1 == 1) {
// if they're met, return Cat_Family_Exists
return "Cat_Family_Exists"; }
// else return Cheeta
else {
return "Cheeta";
};
};
但是,如果您想直接从 sheet 中获取数据,您可能需要查看 docs.
我想在我的 google sheet 中创建一个自定义函数,这将需要一些输入,请在下面比较它们是示例:
我知道这很简单,但是当我尝试保存这段代码时,出现以下错误。
Missing ; before statement. (line 6, file "Code")Dismiss
您的函数可以用 JavaScript 为 Google Apps 脚本编写:
function testFunction(A1,B1,C1) {
// check if all the three conditions are met
if (A1 == "Lion" && B1 == "Cheeta" && C1 == 1) {
// if they're met, return Cat_Family_Exists
return "Cat_Family_Exists"; }
// else return Cheeta
else {
return "Cheeta";
};
};
但是,如果您想直接从 sheet 中获取数据,您可能需要查看 docs.