getFormUrl() in google spreadsheet return url only

2019-07-21 21:05发布

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条回答
我命由我不由天
2楼-- · 2019-07-21 21:50

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.

查看更多
登录 后发表回答