我使用以下非常简单的脚本来更改Google工作表中单元格的值。虽然它确实改变了正确销售的价值,但它并没有呈现结果,就像我点击单元格并手动输入ImportHtml命令一样。有什么想法吗?
function myFunction()
{
var blankSyntax ='ImportHtml("http://www.reuters.com/finance/stocks/companyOfficers?symbol=V", "table", 1)'
SpreadsheetApp.getActiveSheet().getRange('A1').setValue(blankSyntax);
}
答案 0 :(得分:2)
将setValue更改为setFormula
function myFunction()
{
var blankSyntax ='ImportHtml("http://www.reuters.com/finance/stocks/companyOfficers?symbol=V", "table", 1)'
SpreadsheetApp.getActiveSheet().getRange('A1').setFormula(blankSyntax);
}