How to send data to a google sheet with MIT app inventor [ Google Sheet Database ]

  Рет қаралды 67,679

The Coding Bus

The Coding Bus

Күн бұрын

In this video, we will learn how to send data from the MIT app inventor app to google sheet using the app script.
How to Read Data from Google Sheet -: • How to Read Data from ...
...........................................................CODE............................................................................
function doGet(e) {
var ss = SpreadsheetApp.openByUrl("docs.google.co...");
var sheet = ss.getSheetByName("Sheet1");
addUser(e,sheet);
}
function doPost(e) {
var ss = SpreadsheetApp.openByUrl("docs.google.co...");
var sheet = ss.getSheetByName("Sheet1");
addUser(e,sheet);
}
function addUser(e,sheet) {
var name = e.parameter.name ;
var location = e.parameter.location ;
sheet.appendRow([name,location]);
}
.........................................................END............................................................................
....................................................................................................
New Method to Send App data to Google Sheet -: • How to send data to a ...
Follow Us On Social Media For More Updates -:
Facebook -: TheCodingBus/
Website-: thecodingbus.i...
Instagram-: / sourabhdubey007
Reddit-: / sourabhdubey007
Subscribe TCB -: bit.ly/TheCodin...
........................................................................................................
use google spreadsheet as database android
mit app inventor save data
google sheets
google sheets app
google sheets 2018
google sheets link
code mit app inventor
send data to google spreadsheet from android
app inventor web component
app inventor examples
taifun flashlight extension download
admob extension for kodular
app inventor tutorials
use google spreadsheet as database android app inventor game the coding bus thunkable firebase database thunkable thunkable tutorial #TheCodingBus
#TCB #unitedstates #us

Пікірлер: 317
@mahdisaleh.learning
@mahdisaleh.learning 4 жыл бұрын
Dear, It is worked, and for those who asked about the updated in the code, I did something and it works correctly, if you want to add another var or change the variables that mentioned in the original code, you must do these steps: 1- delete the app script. 2- create new one. 3- edit the code in a note file or in word file with your var. 4- copy the new code and complete it as shown in the video.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Thanks...
@RajeevKumar-yr5yi
@RajeevKumar-yr5yi 4 жыл бұрын
i have tried, it was working for more variable
@xperimentsqf3823
@xperimentsqf3823 3 жыл бұрын
not working on me.. can u share your code?
@poojap2604
@poojap2604 2 жыл бұрын
Bro it's not working for me ....
@findthetruth3021
@findthetruth3021 4 жыл бұрын
1- How to download the App to mobile? 2- How to add drop down list 3- How to add chain or cascade drop down? Many thanks for this amazing video. Please answer us. Keep it up.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
1) In the top menu click on the Build option and download it in your laptop and transfer this app to your phone. OR generate the QR for apk 2) you can use list component for this 3) for that you have to use third party extension Thank You
@Maham899
@Maham899 Жыл бұрын
Thanks a lot . Following these instructions I executed the code successfully.
@TheCodingBus
@TheCodingBus Жыл бұрын
Most welcome 🙏
@shaikaruna6967
@shaikaruna6967 Жыл бұрын
hlo i work with same steps that you are mentioned but the data is not updated in the google sheet
@dominiccox6948
@dominiccox6948 4 жыл бұрын
Thanks for this. It didn't work to begin with, then I realised that because I had changed the column headings I had to change the app script. It worked fine then.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Most Welcome 😊
@VarunKumar-fu2jq
@VarunKumar-fu2jq 3 жыл бұрын
i am not getting this one
@realitydotsplus3917
@realitydotsplus3917 4 жыл бұрын
I tried it. It is working. I am happy. Thanks a lot for sharing such a useful tutorial .
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Welcome 😊
@keans3386
@keans3386 3 жыл бұрын
How did you do I am Curios, cause i spend almos 8 hrs but still is not working, like the link of my google spreedsheet is undifined :(
@poojap2604
@poojap2604 2 жыл бұрын
@@keans3386 same prob I face .... Is there any library we have to install for Google scripts
@shrutjain6032
@shrutjain6032 4 жыл бұрын
Thanks a lot your explaination is very good and its a very easy way. Thanks a lot again.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
You are most welcome
@naman25sharma
@naman25sharma 2 жыл бұрын
Hi, How to do so if i want to add one more row i.e. name, location and age?
@dimitrispanagiotou7262
@dimitrispanagiotou7262 2 жыл бұрын
HI GREAT JOB!How can i take data from from app inventor multiple screens and have them in the same row? Thank you!
@HA_HA1990
@HA_HA1990 2 жыл бұрын
Thank you for your demo. I really appriciated that good and well done lesson. Allah bless you. Please make the same about MSSQL or MYSQL database instead of Google sheet.
@joindevelopers_nationformo8702
@joindevelopers_nationformo8702 2 жыл бұрын
Hey Haidar, It is easy to do it using MYSQL. I can help you out for free if you want
@TheCodingBus
@TheCodingBus Жыл бұрын
I will try my best
@niceman567
@niceman567 3 жыл бұрын
Thanks for the video! Love your channel, simple code that can lead to outcome and easy to digest, most importantly it works!
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Glad you enjoy it!
@kaubrutv9864
@kaubrutv9864 2 жыл бұрын
Plz make video on creating dictionary app using spreadsheet
@TheCodingBus
@TheCodingBus Жыл бұрын
sure i'll
@muhammadusmanhanif222
@muhammadusmanhanif222 Жыл бұрын
hi, thanks for helpful video. Can you please guide me how many users can use such app at a time OR how many users can send data from by using single app???
@nuraqilahazman5286
@nuraqilahazman5286 Жыл бұрын
Good and easy to follow . May I know how to retrieve timestamp as well? Because Im using IR sensors and need to modify a bit of your programming in mit app .
@kuaytenghei9986
@kuaytenghei9986 4 жыл бұрын
Hi, thanks for this great video. Can you help me further on how to combine data inserts by users from multiple screen into the same google sheet? For example, data insert by the same user will appears in the same row in the sheet but actually those data of different column comes from different screen of the app.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Hi, Nice question, But you don't need to do nothing for that... google automatically detect the who came first or who put the value first.
@abhinav4638
@abhinav4638 4 жыл бұрын
In the video you showed only how to send data but how can we read data from Google Api sheet in mit app inventor
@TheCodingBus
@TheCodingBus 4 жыл бұрын
i'll make another video for that
@paragmathur6016
@paragmathur6016 4 жыл бұрын
@@TheCodingBus pls make it this week need this urgently Thanks
@Human-bx7od
@Human-bx7od 4 жыл бұрын
After the data gets saved can we use it again. ... ..... For example I will do an app for sign in and sign up after singing in, the data will be saved in the sheet. using the same data will it read and sign us in ??
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Here is the blog about that community.appinventor.mit.edu/t/google-sheets-read-add-sort-delete-select/2001
@Human-bx7od
@Human-bx7od 4 жыл бұрын
@@TheCodingBus thanks
@Human-bx7od
@Human-bx7od 4 жыл бұрын
And congratulations for 5k Subscribers 😁👌👌👍👍🍬🍫🍭🍰🎂
@Human-bx7od
@Human-bx7od 4 жыл бұрын
Make a special video for that
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Thank you so much 😀
@TheCodingBus
@TheCodingBus 4 жыл бұрын
sure... soon
@Promonkey01
@Promonkey01 Жыл бұрын
Nice videos , how to add more collum?
@nievesjoshua1238
@nievesjoshua1238 2 жыл бұрын
Thanks for the video... Do you have Image List picker to Google Sheet
@GuttHacker
@GuttHacker Жыл бұрын
em vez de texto queria salvar fotos, como faz?
@kabirnehra
@kabirnehra 4 жыл бұрын
Please. Make a video . How to make a Barcode Scaner. App. Video
@TheCodingBus
@TheCodingBus 4 жыл бұрын
sure.... Soon
@wierengajan
@wierengajan 3 жыл бұрын
thanks for the clear instruction
@TheCodingBus
@TheCodingBus 3 жыл бұрын
You're welcome!
@BeastGamer6969
@BeastGamer6969 3 жыл бұрын
Awesome!
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Thanks!
@sachinkumar8277
@sachinkumar8277 3 жыл бұрын
@@TheCodingBus I try it but some reason it's not working help me!
@SoulCast7
@SoulCast7 4 жыл бұрын
I press submit and nothing happens. No data appears in my spreadsheet. I have two-step authentication on my gmail, could that interfere?
@TheCodingBus
@TheCodingBus 4 жыл бұрын
no... try again.. may be some code problem.. make sure paste link as it is...
@ChakaHamilton
@ChakaHamilton 4 жыл бұрын
Were you able to figure it out, I too have two-step authentication active.
@dietergasser5778
@dietergasser5778 2 жыл бұрын
Hi Sourabh Thanks a lot for this video, it helps me a lot. May i ask you a question? If i want to write only into one cell and i want to overwrite this cell each time, how would i adjust the code? Probably i only need to change the last line of your code (appendRow), but how? Thanks a lot...D. Gasser
@TheCodingBus
@TheCodingBus 2 жыл бұрын
Yes, definitely
@jiopydesign3055
@jiopydesign3055 Жыл бұрын
I have the same question. Is it only that one line of code that needs changed?
@krizz5825
@krizz5825 8 ай бұрын
Helpful,but i want to add an additional column whose value depends on formula,how to do that
@TheCodingBus
@TheCodingBus 26 күн бұрын
thanks. try to send formula with data.
@STaSMn135
@STaSMn135 3 жыл бұрын
Thanks for the tutorial. It worked perfectly but when I type Russian characters in my form it doesn't show up on the sheet. Can you tell me what is the problem?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Let me check
@ritikgoplani6215
@ritikgoplani6215 3 жыл бұрын
When I am running script it shows error in line number 20 Please help me Showing error message "Cannot read property'parameter' of underlined (line20,file"code")
@karanpatel8267
@karanpatel8267 3 жыл бұрын
make sure first do as it is that shown in video, then change your variable name or add other fields, u will not get error, recheck your code
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Yes
@olawale11954
@olawale11954 8 ай бұрын
Good work i love it. How can i reset the form from the app after the user has click on send or submiy button and display successfully message, thank you
@TheCodingBus
@TheCodingBus 8 ай бұрын
yes possible. just hide the current layout and display the thank you test in another layout
@Asifiqbal138
@Asifiqbal138 4 жыл бұрын
how can i add time stamp, when data is send first colum should be time to add data on google sheet.?
@TheCodingBus
@TheCodingBus 4 жыл бұрын
yes
@Asifiqbal138
@Asifiqbal138 4 жыл бұрын
Can you help me how to do that?
@rajdeepjaiswal7370
@rajdeepjaiswal7370 4 жыл бұрын
Can you make app like 2 phone will be connected through Bluetooth and if I play any music then in both mobile music will run AT same time Please try 🤗
@TheCodingBus
@TheCodingBus 4 жыл бұрын
i'll try..
@kabirnehra
@kabirnehra 4 жыл бұрын
Yes
@anmolwadali9227
@anmolwadali9227 4 жыл бұрын
Really simple and nice project
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Thank you! Cheers!
@housemd4752
@housemd4752 2 жыл бұрын
You're clever man bro. Thanks
@TheCodingBus
@TheCodingBus 2 жыл бұрын
Glad to help
@s.a.srinivasan9256
@s.a.srinivasan9256 4 жыл бұрын
Madam, I am an assistant professor. I want to know that,how to get all students details from all students mobile to my Google sheet
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Hello Tamil Tech, I'm Sourabh you can create an app where you have to put some fields like students name , number etc and then save send all details to google sheet...
@rakeshbond009
@rakeshbond009 11 ай бұрын
How can i send entry date also with this data to google sheet. i tried call clock but not working
@dr.arvindgiram8460
@dr.arvindgiram8460 4 жыл бұрын
Hi Thanks for a nice video I tried to built an app for my surgical workdone but after clicking send data it is not getting uploded to spread sheet. I copied ur code and made some additions in variables only. Can send u to cheak it.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Thank You.. Okay... make sure you have to update variable in 2 place
@dr.arvindgiram8460
@dr.arvindgiram8460 4 жыл бұрын
@@TheCodingBus thanks for replying so quickly. Plz guide, as ur help is going to help me built an app for covid worriers & I'm one of them.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
I'll make a video on that...how we can add the more field's or how to modify app script...
@dr.arvindgiram8460
@dr.arvindgiram8460 4 жыл бұрын
@@TheCodingBus thanks a lot. Plz share ur mail id so that it will be easy for me to share coding done by me if possible. This app is just a testing for a large data to be constructed with a lot of variables. Once again thank you !
@TheCodingBus
@TheCodingBus 4 жыл бұрын
thecodingbus@gmail.com
@sokunlyna
@sokunlyna 2 жыл бұрын
it does not work, i followed all of the steps but my data does not go to the sheet. is there anything I can do to fix this?
@protoback
@protoback Жыл бұрын
hi, do you know why the code is not working if I'm doing exactly the same steps.. says error in add user(e)
@tedfun3681
@tedfun3681 3 жыл бұрын
I tried this way.. But... The data isn't showing on google sheet
@TheCodingBus
@TheCodingBus 3 жыл бұрын
recheck variable and code
@rtrmohamedshinazi1232
@rtrmohamedshinazi1232 4 жыл бұрын
bhaiya i pasted the sheet url in the app script then the app script url in the mit appinventor block section then i tested the app -----the data is not saving in the sheet--pls kuch solution hoga to bataiye--
@TheCodingBus
@TheCodingBus 4 жыл бұрын
make sure deploy the app... use code as it is.. like variable name.. make sure paste the corrent link... overall recheck this will work... if not let me know...
@Targajens
@Targajens 4 жыл бұрын
hy and reverse ? How to reciever data from a google sheet in MIT app inventor [ Google Sheet Database ]
@TheCodingBus
@TheCodingBus 4 жыл бұрын
i'll create it soon
@moayadsalih3563
@moayadsalih3563 3 жыл бұрын
Hi, I followed this procedure but when I click "submit" button I get this error msg (Cannot parse text argument to "list from csv table" as a CSV-formatted table). Whta does it mean please?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
read this community.appybuilder.com/t/list-from-csv-table-text/1483
@moayadsalih3563
@moayadsalih3563 3 жыл бұрын
@@TheCodingBus Thank you very much. That's solved now. However, if I enter text in non-latin letters it doesn't appear in my google sheet. Anyway I can get around that? Thanks
@fh3rslax293
@fh3rslax293 4 жыл бұрын
Great video,it is very helpful.Please could you help me with the script to remove and/or update a row by selecting it from the app using listview
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Thanks.. sure
@sandeepa4116
@sandeepa4116 4 жыл бұрын
Hi Sourabh, really well explained. Keep it up:)
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Thank You 😊
@siege26
@siege26 9 ай бұрын
Is it possible to read the data from google sheets and display it on mit app?
@saikatbasak2617
@saikatbasak2617 4 жыл бұрын
Can you pls help me on .........i am making one app wherein i want to enter my ckecklist data in the app and automatically it will reflect in my digital checklist
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Yes.. you just need to code on checked box when checkbox will checked then save this data
@michaelfranks2040
@michaelfranks2040 2 жыл бұрын
How do I change the script if I want to send the data to start at a different column/row, say column 'D', row '4'?
@vijaydevakonda1935
@vijaydevakonda1935 2 жыл бұрын
how to clear input field after submit
@John-qe3ky
@John-qe3ky 4 жыл бұрын
Can you explain how to read a few rows and columns of numbers in google worksheet and display the information. Then push a button to refresh (reload) the display to reflect new changes to google worksheet data.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
I'll publish the video soon on how to read data from google sheet
@ferhattasci4650
@ferhattasci4650 Жыл бұрын
Hello. I am writing in Turkey. I need help. I can't send Turkish characters. Text like "warm" or "triangle" instead of example sangram. Text like "ılık" or "üçgen" instead of example sangram
@FunZone01
@FunZone01 3 жыл бұрын
Sir please tell how to add more box ?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
u have to add variables in your app script
@pentagonikonic946
@pentagonikonic946 3 жыл бұрын
Thank you so so much
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Welcome 😊
@Stuckathomemom
@Stuckathomemom 3 жыл бұрын
You wouldn't happen to have a video that explains how to put in all the data types - like check boxes?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
i'll make a video on that
@sergiomejia8837
@sergiomejia8837 2 ай бұрын
Excelente
@TheCodingBus
@TheCodingBus 2 ай бұрын
Thank You
@gsvend2272
@gsvend2272 4 жыл бұрын
It works! But how to add a third column?
@TheCodingBus
@TheCodingBus 4 жыл бұрын
you have to add the variable
@armul07
@armul07 4 жыл бұрын
thanks man.. that's worked
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Welcome 👍
@piowar96
@piowar96 3 жыл бұрын
Hi, I tried to repeat your example. Sorry but it is not working. The script is exactly the same. I have deployed it with success. I have checked the saveResponse property after calling the posttext , it is false but should be true. I do not know why. Please help.
@TheCodingBus
@TheCodingBus 3 жыл бұрын
make sure work with same fields. if it's work then change the fields name
@Stuckathomemom
@Stuckathomemom 3 жыл бұрын
Brilliant!!
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Thanks
@poojap2604
@poojap2604 2 жыл бұрын
Ma'am is there any library to be installed for Google scripts
@tmaxil
@tmaxil 3 жыл бұрын
how i can make it support other lang? I write in Hebrew and its not get the Heb text
@xperimentsqf3823
@xperimentsqf3823 3 жыл бұрын
is it still work? coz i try this but not work .. i rechecked the code, but no differents.. any solutions?
@noutouyduangta4240
@noutouyduangta4240 4 жыл бұрын
Cool! Thanks for your sharing
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Welcome 😊
@induarora4659
@induarora4659 4 жыл бұрын
Sir please make a app for father's day for father
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Sure....
@ValkyriePyxl
@ValkyriePyxl 4 жыл бұрын
My Birthday is in fathers day
@aabhatathed5437
@aabhatathed5437 2 жыл бұрын
if we want to add date column in sheet then what changes are required in apps script?
@TheCodingBus
@TheCodingBus 2 жыл бұрын
select any component then ctrl+c then ctrl+v
@TN-kd8ju
@TN-kd8ju 3 жыл бұрын
Thank you. It worked great :)
@TheCodingBus
@TheCodingBus 3 жыл бұрын
You're welcome!
@DTITSTUDIO
@DTITSTUDIO 3 жыл бұрын
How to user data store in WhatsApp aur telegram please. Tell me one video please sir
@TheCodingBus
@TheCodingBus 3 жыл бұрын
okay i'll make a video for that
@DTITSTUDIO
@DTITSTUDIO 3 жыл бұрын
Bro plz Google sheet data store system video please bro
@ratheesh.r.svellanad2875
@ratheesh.r.svellanad2875 4 жыл бұрын
Great I have a doubt how to make a simple attendance app
@TheCodingBus
@TheCodingBus 4 жыл бұрын
How can I help you?
@lukmannet
@lukmannet 2 жыл бұрын
Very good, how to add more cell?
@TheCodingBus
@TheCodingBus 2 жыл бұрын
Thanks Will upload soon
@juliorodrigotorres1912
@juliorodrigotorres1912 3 жыл бұрын
Great app! It worked the first time, but when I tried to do it again, the app script says "TypeError: Cannot read property 'parameter' of undefined (line 16, file "Code"). How can I fix it? Thank you
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Thank You, have you changed column value in app script or in design or have u added another column if Yes then you have to change it properly u should have a basic knowledge of JS
@fakeekaf2346
@fakeekaf2346 3 жыл бұрын
Your voice was like South Indian
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Ohk
@nuruldesita8477
@nuruldesita8477 4 жыл бұрын
sorry to ask, I sent the data to the Google sheet. But after sending, one column was missed. I tried to use Postman to check .. it said the script was complete but it didn't return anything. Please help. I have checked many times, everything is the same either in blocks or scripts. And there's no warning error showed up.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
First of all make sure you are using two column to send data.. and first make two column app
@FASOYLAS
@FASOYLAS 3 жыл бұрын
excellent job, I try to send data with greek characters but it doesn't recognize them, with Uk characters works just fine . Is there any way to fix that, the problem is with the MIT app, or is it about the script function? Keep up the good work.
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Let me check
@FASOYLAS
@FASOYLAS 3 жыл бұрын
@@TheCodingBus Hello again, did you find any solution?
@crbcreation_pkd
@crbcreation_pkd 4 жыл бұрын
I want to add more data like more column and row data what to do (any more codes required) ?
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Yes.. you have change into script file
@bubblebath2892
@bubblebath2892 4 жыл бұрын
Instead of AppScript can you please show using Google Forms or something , i want to have at least 20 inputs (where some of the will be numbers , some will be numbers plus text (e.g Rs.10/bag) ,etc )from my users at one go and don't know how to write AppScript on my own
@TheCodingBus
@TheCodingBus 4 жыл бұрын
sure Bubble i'll try to make that video without appscript... if you want to add more value just go to the script and read it...and then increase the variable...
@bubblebath2892
@bubblebath2892 4 жыл бұрын
@@TheCodingBus Thanks for the reply , Also , as there are 20 fields , they are on different screens , screen 1 , screen 2 . The Submit button is on screen 2 , so I added the Web component on Screen 2 - the problem is in Join statement in blocks , i cannot get the components from screen 1 , so should I put 1 Web component on screen 1 also ??
@CodingHats
@CodingHats 4 жыл бұрын
I tried it but the problem is whenever I click on the button after entering name and location and check the spreadsheet I don't get the added data there. Please help me out coding bus.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
make sure you have to put your own sheet link... recheck your code
@CodingHats
@CodingHats 4 жыл бұрын
Thank you
@erikkpritchard
@erikkpritchard 4 жыл бұрын
location posts to Google Sheet but name does not. Where might the error be?
@TheCodingBus
@TheCodingBus 4 жыл бұрын
error might be in your variable names
@zayngrin4682
@zayngrin4682 4 жыл бұрын
how to put 3 items like name , id number and quantity at the same sheet ? just add the name of item?
@TheCodingBus
@TheCodingBus 4 жыл бұрын
just add item and change on app script.. you have to make other varible for extra iteam..
@sandip528
@sandip528 3 жыл бұрын
How to get confirmation of every entry
@TheCodingBus
@TheCodingBus 3 жыл бұрын
use notifier
@poojandholakia3288
@poojandholakia3288 3 жыл бұрын
Hello Saurabh Sir, Can you please guide on how to update the record in the google sheet using MIT App Inventor ? I have referred to your video for sending data and receiving data but now I want to update 1 record from this data? Can you please guide?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
you have to just remove that 1 parameter ... in the video we are storing the 2 values
@poojandholakia3288
@poojandholakia3288 3 жыл бұрын
@@TheCodingBus Thank you for the response, but I am not that great in the coding part. Can you please elaborate or post that line of code here ? Thanks
@poojandholakia3288
@poojandholakia3288 3 жыл бұрын
Hey, I basically want to edit the value on one of the row and column. Update from what value we have. Say some age is mentioned in the cell "25" and now want to replace with "34". How do we do m
@MuhdAkmal18
@MuhdAkmal18 3 жыл бұрын
Is there a way to insert photo/image into the excel?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
use base64 to convert image to text and then store it
@keshavmurthy6998
@keshavmurthy6998 2 жыл бұрын
Thank you Sir...
@TheCodingBus
@TheCodingBus 2 жыл бұрын
Most Welcome
@dass8193
@dass8193 3 жыл бұрын
Hello! does this method still work? i've followed each step perfectly and it doesn't seem to do anything to the spreadsheet.
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Yes it does.. recheck ur code... may be u missed something
@parthbetai4452
@parthbetai4452 3 жыл бұрын
@@TheCodingBus bro same thing happened with me its not working
@virajm5247
@virajm5247 3 жыл бұрын
@@TheCodingBus yes same
@xperimentsqf3823
@xperimentsqf3823 3 жыл бұрын
not working on me too.. is it still working..?
@dass8193
@dass8193 3 жыл бұрын
@@xperimentsqf3823 Hi, i found a solution elsewhere, you have to enable the google sheet API in googlescripts, you can research more about that online.
@nuruldesita8477
@nuruldesita8477 4 жыл бұрын
Can I send data from LABEL ?? I wanna send the result from my calculator that shows up on label
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Yes you can...
@nuruldesita8477
@nuruldesita8477 4 жыл бұрын
@@TheCodingBus can I use the same coding as what you made? and replace the textbox with label? Or I need another code or script? Please help me.
@Manhans2731
@Manhans2731 4 жыл бұрын
Hi I am trying but data not reaching to Google sheet please help me
@TheCodingBus
@TheCodingBus 4 жыл бұрын
may i know the error please?
@Asifiqbal138
@Asifiqbal138 4 жыл бұрын
Great effort dear
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Thanks a lot 😊
@FunZone01
@FunZone01 3 жыл бұрын
What is the code for it ?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
for send data
@ddtdilireba
@ddtdilireba 3 жыл бұрын
Hi, when copy the sheet url to the google apps script, do i need to open the "write" permission for my google spreadsheet?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Yes
@serirasyidah2390
@serirasyidah2390 4 жыл бұрын
i tried it but its not working :( there is empty on google sheet
@TheCodingBus
@TheCodingBus 4 жыл бұрын
recheck you code.. and make sure you are using the same variable name or fields
@teamsatyarthi4406
@teamsatyarthi4406 3 жыл бұрын
can we also save images in google sheet?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Yes
@broplayers1567
@broplayers1567 2 жыл бұрын
Can u please tell me how to add data in more than 2 column. Am not able to do so press please help me
@TheCodingBus
@TheCodingBus 2 жыл бұрын
you have to change to code part.
@broplayers1567
@broplayers1567 2 жыл бұрын
@@TheCodingBus i tried adding the extra column names but the data isn't showing there
@broplayers1567
@broplayers1567 2 жыл бұрын
@@TheCodingBus can u please tell me how to change in a perfect way pls
@thefinancemindsets1465
@thefinancemindsets1465 3 жыл бұрын
Didn't work! I'm trying from 3days
@matthewgalve137
@matthewgalve137 4 жыл бұрын
hello how can I reset spreadsheet? I want it to start in number 2 again.
@TheCodingBus
@TheCodingBus 4 жыл бұрын
sorry i have to check this option
@waqarghafoor6071
@waqarghafoor6071 4 жыл бұрын
Keep it up bro
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Thank You 😊..sure...
@sonu3027
@sonu3027 3 жыл бұрын
doGet function not found.. what to do?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
recheck your code.. u will get it
@jijeeshpadmanabhan350
@jijeeshpadmanabhan350 2 жыл бұрын
Can we connect MIT inventor with Air table?. please reply.
@TheCodingBus
@TheCodingBus 2 жыл бұрын
no
@jijeeshpadmanabhan350
@jijeeshpadmanabhan350 2 жыл бұрын
@@TheCodingBus ok
@ChakaHamilton
@ChakaHamilton 4 жыл бұрын
The code works, however. How do I get it to go into a specific cell I have a cell CaregiverName & CaregiverPhoneNumber in the app and in the sheet. However when I submit the data, it goes into the first 2 rows which are before the two i mentioned, not those with the cell names above. is there a way to set it to go to a cell with specific header titles?
@TheCodingBus
@TheCodingBus 4 жыл бұрын
yes... you have to mention cell in the app script code
@ChakaHamilton
@ChakaHamilton 4 жыл бұрын
@@TheCodingBus can you provide an example of its usage then from there can figure it out. update: I figured out what you were saying. Tx!
@andytan5513
@andytan5513 3 жыл бұрын
Hi, is the & and = sign necessary?
@TheCodingBus
@TheCodingBus 3 жыл бұрын
Yes
@anupludra
@anupludra 4 жыл бұрын
I am unable to do a google script for UPDATE RECORD. Can u help?? I have a google sheet where 4 - 5 users are uploading data from mobile app. The app is working fine. My requirement is that when any user upload data, his previous data should get updated with the new data. So for every user, there should be only 1 record available on the google sheet (LAST SENT RECORD).
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Hi, this will work fine if you are uploading the data from different device. because we are using the same script
@anupludra
@anupludra 4 жыл бұрын
@@TheCodingBus I this it would be the other way around. If I am the user and I am uploading My data, Then My Data will get over written. I cannot OVERWRITE anyone else's data !!
@anupludra
@anupludra 4 жыл бұрын
@@TheCodingBus Tx for your response anyways .. I got it to work.
@anupludra
@anupludra 4 жыл бұрын
The data being uploaded is tagged with a unique identifier for the user. So to update a record, the unique identifier is compared. That way only I can update My record.
@nthoang2698
@nthoang2698 4 жыл бұрын
I need the code when i click "send data" button, then all datas in all labels deleted, thank u!
@TheCodingBus
@TheCodingBus 4 жыл бұрын
Let me check
Spongebob ate Michael Jackson 😱 #meme #spongebob #gmod
00:14
Mr. LoLo
Рет қаралды 11 МЛН
Кәсіпқой бокс | Жәнібек Әлімханұлы - Андрей Михайлович
48:57
How to get google sheet data in MIT App Inventor app.
10:04
The Coding Bus
Рет қаралды 11 М.
How to Send Data to a Google Sheet with MIT App Inventor
8:05
Allison John
Рет қаралды 187 М.
How are holograms possible? | Optics puzzles 5
46:24
3Blue1Brown
Рет қаралды 290 М.
Chinese Nuclear Batteries: Deadly or Genius?
10:24
Two Bit da Vinci
Рет қаралды 7 М.
How to send data to a google sheet with MIT app inventor [ Easy Way ]
8:06
Spongebob ate Michael Jackson 😱 #meme #spongebob #gmod
00:14
Mr. LoLo
Рет қаралды 11 МЛН