嗨我有4张google表格使用导入xml(因为谷歌50导入限制)每个正在排序,然后将数据从网页提供给另一个“摘要”表。我只需要一个4 google工作表的脚本,每分钟左右刷新一次importxml。
或者,当目标(源)网页上的指定信息发生更改时刷新importxml。
另外,因为这可能会在某些时候从移动设备上使用,4张是否必须保持打开状态?
答案 0 :(得分:1)
我最终遇到了,抱歉找不到OP现在 - 似乎就是这样做了。
function getData() {
var queryString = Math.random();
var cellFunction1 = '=IMPORTXML("' + SpreadsheetApp.getActiveSheet().getRange('D1').getValue() + '?' + queryString + '","'+ SpreadsheetApp.getActiveSheet().getRange('E1').getValue() + '")';
SpreadsheetApp.getActiveSheet().getRange('D2').setValue(cellFunction1);
}