Guest User

Untitled

a guest
Jun 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. // This will run when the spreadsheet is opened or the browser page is refreshed
  2. function onOpen() {
  3. SpreadsheetApp.getUi()
  4. .createMenu('Custom Menu')
  5. .addItem('HTML Vue', 'openDialog')`enter code here`
  6. .addToUi();
  7. }
  8.  
  9. function openDialog() {
  10. var ss = SpreadsheetApp.getActive();
  11. var cell = ss.getActiveCell();
  12. var html = HtmlService.createHtmlOutput(cell.getValue());
  13. SpreadsheetApp.getUi().showModalDialog(html, 'HTML Vue:' );
  14. }
Add Comment
Please, Sign In to add comment