Google表格缺少2个数字之间的空格

时间:2018-11-03 15:11:40

标签: google-apps-script

当我使用.setValue(“42 14”)时,Google表格getValue()中的单元格将返回4214。
但是,当我使用.setValue(42 9)时,Google表格getValue()中的单元格将返回429。
为什么!?

2 个答案:

答案 0 :(得分:1)

能否请您进一步解释或在此处发布您的代码。

下面的代码运行正常

 SpreadsheetApp.getActiveSheet().getRange('A2').setValue('Hello');
 SpreadsheetApp.getActiveSheet().getRange('A3').setValue('42 14');
 SpreadsheetApp.getActiveSheet().getRange('A4').setValue('42 9');
 SpreadsheetApp.getActiveSheet().getRange('A5').setValue(42.9);

请检查所附的屏幕截图

enter image description here

答案 1 :(得分:0)

我知道我错过了什么,我不得不更改此工作表的单元格格式。