我有一个接受来自不同函数的参数的函数。如何将此功能安排为触发器?
function runData(){
return googleApps.appsImport('table')
}
function appsImport(sourcetable){
//push data from table to sheet
}
答案 0 :(得分:0)
触发另一个函数,使用您想要的参数调用appsImport。
function runTrigger(){
appsImport('table');
}
function appsImport(sourcetable){
//push data from table to sheet
}