Create Web App Form on Google Sheets using Google Apps Script

Поділитися
Вставка
  • Опубліковано 29 січ 2025

КОМЕНТАРІ • 49

  • @carlosizquierdo2505
    @carlosizquierdo2505 3 роки тому +2

    Greetings from Venezuela. Today I have learned more than in college years.
    Thanks. I hope to do all the videos of the channel.

  • @Niles-ei1ww
    @Niles-ei1ww Рік тому

    Amazing! Gave me the building blocks to update my finance tracker easily.

  • @fishthy2.0
    @fishthy2.0 3 роки тому

    Its 1yr ago published this video.. But it helps me a lot now...

  • @francoisleroux8344
    @francoisleroux8344 2 роки тому +1

    Hi. Followed your video exactly but when I paste the url to go to my web app the page is blank… what could be the problem?

  • @dorianduda3328
    @dorianduda3328 2 роки тому +1

    Is it possible to reload the page after submitting the answers? How to do it?

  • @CodeWithCurt
    @CodeWithCurt  4 роки тому +1

    HTML and Javascript Code in Video:



    function AddRow()
    {
    var firstname = document.getElementById("firstname").value;
    var lastname = document.getElementById("lastname").value;
    google.script.run.AddRecord(firstname, lastname);
    document.getElementById("firstname").value = '';
    document.getElementById("lastname").value = '';
    }



    First Name:
    Second Name:

  • @FernandesFamilyLightShow
    @FernandesFamilyLightShow Рік тому

    Great information. thank you

  • @Leo-ig6yl
    @Leo-ig6yl Рік тому

    Where did you use the AddRecord() function in your HTML file???

  • @cloudymuffin
    @cloudymuffin 2 роки тому

    Thank you this was very helpful!!

  • @addinannas7909
    @addinannas7909 2 роки тому

    Hello.., can we do something like.. for the first name at colum B2 NOT starting at A1? By default it at A1 right

  • @thomasanders1954
    @thomasanders1954 3 роки тому

    I have a entry from created in sheet that i want to share to 10 user, so i duplicate the usersheet to 10 separate spreadsheet.
    I wanna to make a web form login, that if User A login it goes to A spreadsheet so on
    So the form is just a gateway to another sheet.
    Can it possible?

  • @mayursawant7992
    @mayursawant7992 2 роки тому

    Sir how to modify these form by submited then redirect other page/landing page sir...please sir tell me.. and sir only ask form name, email, and number and one thing form supported to google sites

  • @denismatt
    @denismatt 3 роки тому

    Does it work for the new IDE ?

  • @vassilip.mironov8661
    @vassilip.mironov8661 2 роки тому

    Can you attach the PDF files to the form and save them in the G Drive under the created subdirectory {{Username}} from the form, saving the clients' contact data in the fields of the Sheet? Thank you.

  • @lokeshandlokesh3136
    @lokeshandlokesh3136 4 роки тому +3

    Can you upload video on search data on Google sheets using html pages

  • @ibrahimcetin6774
    @ibrahimcetin6774 3 роки тому

    Hello. Thank you very much for the information you have given.
    I wanted to know;
    Once we fill out the form and send it, we can only print it on the 1st line. Is it possible to print this in a few lines?
    For example, a person has 3 phone numbers. I want to write these numbers sub-bottom. Is this possible ?

  • @georgefall5
    @georgefall5 6 місяців тому

    Thanks so much!

  • @everydaytalkonlineenglishc6858

    Why would you do it this way rather than by using a google form and connecting it to a google sheet?

  • @murat.ondasyn
    @murat.ondasyn 3 роки тому

    HELLO MY FRIEND. Are there any restrictions for GOOGLE APPS SCRIPT as to how many times a script can be called by a website?
    THANK YOU

  • @bicaps1313
    @bicaps1313 4 роки тому

    Very useful. Thanks

  • @drewdrew9607
    @drewdrew9607 2 роки тому

    thankyou so much!!

  • @tazulislam2698
    @tazulislam2698 4 роки тому

    Boss how to post multi input fields data in multi-row in one column at a time by one clicking?
    example: column is "materials" ---items are "shoe, t-shirt, jacket, and so on.

  • @stradacom71
    @stradacom71 Рік тому

    Thank you for the tutorial. It would be interesting if you put your first name, last name and in addition to geolocate your location latitude and longitude and transfer all that to the Google Sheets, can you do it?

  • @mcjuds1449
    @mcjuds1449 4 роки тому

    01:46 output html
    03:10 call .gs function

  • @vinaysircsnip9526
    @vinaysircsnip9526 3 роки тому

    google.script.run. is unable to call the function. why?

  • @francismata4492
    @francismata4492 4 роки тому

    how to add more records sir?

  • @masterpig5s
    @masterpig5s 3 роки тому +1

    Thread of code, hopefully.
    No idea if youtube is going to mess up the tabbing etc.
    Hopefully you don't mind. I may not type everything out.

    • @masterpig5s
      @masterpig5s 3 роки тому +1

      WebApp.html
      First Name:
      Last Name:

      I would put the First-Last Name labels within their own tags too. I don't know how putting the entire line in a paragraph tag affects it completely. Most likely stacks them on top of each other instead of being side by side but it should work.
      Example: First Name:

    • @masterpig5s
      @masterpig5s 3 роки тому +1

      function AddRow()
      {
      var firstname = document.getElementById("firstname").value;
      var lastname = document.getElementById("lastname").value;
      google.script.run.AddRecord(firstname, lastname);
      document.getElementById("firstname").value = '';
      document.getElementById("lastname").value = '';
      }
      I should mention that I haven't run any of this code yet.

    • @masterpig5s
      @masterpig5s 3 роки тому

      WebApp.html, specifically in the head of the document (in the tag).

  • @outdoorlessons3962
    @outdoorlessons3962 2 роки тому

    Thank you for the tutorial.
    Do you have a video on how to extract checkboxes values from each row and update those checkboxes values to the assigned ID into Google Sheets.
    Below is an example of HTML table from Web App (the table values 'ID' & 'Name' are extracted from Google Sheets)
    ID Name Q1 Q2 Q3 Q4
    1 John checkbox1 checkbox2 checkbox3 checkbox4
    2 Helen checkbox1 checkbox2 checkbox3 checkbox4
    3 Pete checkbox1 checkbox2 checkbox3 checkbox4

  • @melissakoebel239
    @melissakoebel239 4 роки тому

    I am having an issue with the onclick working, it doesn't seem to be triggering anything in the published Web App, any help would be appreciated. Everything else works great and was easy to follow

    • @CodeWithCurt
      @CodeWithCurt  4 роки тому

      I posted the HTML and Javascript Code in the Video. It is in the public comment. Make sure the URL in the google script code is the exact URL to the google sheet you are wanting to copy to. Also, make sure the sheet name in the script code matches the one on the google sheet. I hope this helps.

    • @suyogsawant5045
      @suyogsawant5045 4 роки тому

      @@CodeWithCurt In my case I try all this still after clicking on Add nothing happens. Even data is not added. Please help me

    • @suyogsawant5045
      @suyogsawant5045 4 роки тому +1

      Also Please share code

    • @intrealestate
      @intrealestate 4 роки тому

      @@suyogsawant5045 Hello, did you find out what was wrong with your code?

    • @suyogsawant5045
      @suyogsawant5045 4 роки тому

      @@intrealestate No... Not worked for me in any way.

  • @AlexDaza08
    @AlexDaza08 4 роки тому

    gracias

  • @sheebaedwin7076
    @sheebaedwin7076 4 роки тому +1

    The names are not adding to the sheet1

  • @RidleyS79
    @RidleyS79 4 роки тому

    Dear Curt,
    Great material!
    I wonder if you think it'd be possible - if it's legal at all - to create a google web app and rent out the solution by granting access to a 3rd party without them having the possibility to duplicate the app and start using on their own.
    If yes, I also wonder if it's possible to create pdfs with a press of a button within the app, to which the user would have access via a shared folder and get it somehow email it to their customer by a couple of clicks. Thanks in advance for your answer!

  • @NamHaVblog
    @NamHaVblog 4 роки тому

    thanks

  • @newborn7850
    @newborn7850 4 роки тому

    how to search a particular record from HTML page by Id or Name in googlesheet , html form with text box and search button searching record in Google sheet, Thanking you Lots

  • @newborn7850
    @newborn7850 4 роки тому +1

    superb u rock man, pls help I just want the reverse of this , Data from GoogleSheet being displayed on HTML page one row at a time with next and prev button on html page . Data on spread sheet contains Name , Age , Photograph