用于更改Google工作表中的ImportHTML值的脚本

时间:2016-05-04 19:37:02

标签: javascript scripting google-sheets

我使用以下非常简单的脚本来更改Google工作表中单元格的值。虽然它确实改变了正确销售的价值,但它并没有呈现结果,就像我点击单元格并手动输入ImportHtml命令一样。有什么想法吗?

function myFunction() 
    {
      var blankSyntax ='ImportHtml("http://www.reuters.com/finance/stocks/companyOfficers?symbol=V", "table", 1)'
      SpreadsheetApp.getActiveSheet().getRange('A1').setValue(blankSyntax);
    }

1 个答案:

答案 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);
}