Create & Open Spreadsheets - Apps Script | Spreadsheet Service ~ Episode 1.1

Поделиться
HTML-код
  • Опубликовано: 22 янв 2025

Комментарии • 12

  • @mdamirhossain9376
    @mdamirhossain9376 4 года назад +2

    These short videoss help to keep concentration. Things never getting boring so far. Let's see how this gonna end.

  • @dbtech429
    @dbtech429 2 года назад

    Thanks for posting this.. learning just for fun!

  • @ZhuYiting612
    @ZhuYiting612 3 года назад

    @David Weiss, in gs, these functions do need to called in order to execute? all functions are executed in order from top to bottom? thanks

  • @sanathdevadiga3351
    @sanathdevadiga3351 2 года назад

    Hi , is there any way to create copy of original spreadsheet when user open original and show this copy to specific users speratly instead of original spreadsheet for them to edit as per users?

  • @HelPfeffer
    @HelPfeffer 2 года назад

    How do you close it?

  • @baherhany2435
    @baherhany2435 3 года назад

    great content man keep it up

  • @hareesh7053
    @hareesh7053 Год назад

    Thanks a lot!

  • @MatheusSilva-qm3ph
    @MatheusSilva-qm3ph 2 года назад

    Another very good video, congratulations! A question, how do I create a new table tab with code? Thanks.

  • @brendonhenshaw8605
    @brendonhenshaw8605 2 года назад

    Unhelpful. How do you get to Season 1 ? You click on something and Season 1 comes up? How do I get Season 1 to come up? I googled 'how to open google sheets app script' and this video came up, which is totally unhelpful. Can you please change the name on this video. Thank you

  • @Seoyule
    @Seoyule 4 года назад

    Awesome

  • @davestorm6718
    @davestorm6718 3 года назад +1

    The problem with this is that, unless the spreadsheet is opened in the browser, you can't alter it!
    let ss = SpreadsheetApp.openById(ssFileId);
    Logger.log(ss.getName()); //so it's actually opened on the server only
    //NOTE: the following does absolutely nothing!
    //create a tab/sheet called Data, and a second called Summary
    ss.insertSheet('Data', 0);
    ss.insertSheet('Summary', 1);