getFormUrl() in google spreadsheet return url only of last linked form?

你。 提交于 2019-12-11 03:07:18

问题


I have two forms linked with one spreadsheet, one sheet for each form. When I run such script

function myFunction() {
  var ss;
  ss = SpreadsheetApp.getActive();
  Logger.log(ss.getFormUrl());
}

I will see only one url (as life shows url for the second form). Is there any way to get urls for all linked forms?


回答1:


This functionality is currently missing in the API. There is an existing request on the issue tracker for this here. Star that issue to follow it for the resolution.



来源:https://stackoverflow.com/questions/29195006/getformurl-in-google-spreadsheet-return-url-only-of-last-linked-form

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!