在电子表格脚本编辑器中运行代码时出错

时间:2017-12-25 18:54:36

标签: google-apps-script google-sheets

我已经尝试在谷歌电子表格脚本编辑器上运行此脚本但不知何故,我每次运行时都会收到错误消息。因此,您的建议非常感谢。

function import() {
  SpreadsheetApp.getActiveSheet().getDataRange().clear();
  SpreadsheetApp.getActive().getRange('B5').setValue('=IMPORTXML("http://www.xe.com/currencyconverter/convert/?Amount=1&From=XBT&To=MYR","//div[@class='ucc-container']|//span[@class='uccResultAmount']"))
}

1 个答案:

答案 0 :(得分:0)

试试这个,我让你的代码工作。我逃脱了公式中的单引号。

 SpreadsheetApp.getActive().getRange('B5').setValue('=IMPORTXML("http://www.xe.com/currencyconverter/convert/?Amount=1&From=XBT&To=MYR","//div[@class=\'ucc-container\']|//span[@class=\'uccResultAmount\']")')