Home > Blockchain >  Open HTML file from a separate spreadsheet
Open HTML file from a separate spreadsheet

Time:04-27

I am trying to make a google sheet capable of opening an HTML file that is located on a different spreadsheet as a sidebar. Here is the code that I have already

function sidebar1() 
{
  var b1 = SpreadsheetApp.getActiveSheet().getRange('C13').getValue();
  html = HtmlService.createHtmlOutputFromFile(b1).setTitle(b1);
  ui.showSidebar(html);
}

CodePudding user response:

It's only possible if you are the current user of that spreadsheet and that spreadsheet is the container of the script because SpreadsheetApp.getUi() as described in the documentation Returns an instance of the spreadsheet's user-interface environment that allows the script to add features like menus, dialogs, and sidebars. if a spreadsheet is opened by id or url then there is no user interface

I just thought that if you have two spreadsheets already open it might be possible to call a server side function on one to run a server side function on the other using Apps Script API which might be able to launch a Sidebar on the second sheet. So maybe I'm wrong. Give it a try.

CodePudding user response:

One solution would be to open the HTML file into a temporary workbook, and copy the sheet from there into the workbook containing all of them.

  • Related