How to send data (vietnamese) to google sheet using kodular

Then it should work

yes, i want to save in column A

But it’s not compulsory :roll_eyes: decode text .

Ok let me create a new script for same sheet

1 Like

its compulsory :roll_eyes:

Can you give me some time as I am busy in other project also ?

yes, thank you very much, help me when you are free

ok, i am sharing you very simple one. there by you can send only one text box value to the sheet.

var ss = SpreadsheetApp.getActive();
var sh = ss.getSheets()[0];

   function doPost(e) {
  var data = JSON.parse(e.postData.contents);
  sh.appendRow(data);
  return ContentService.createTextOutput(data);  
}
    function doGet(e) {
  var data = JSON.stringify(sh.getDataRange().getDisplayValues());
  return ContentService.createTextOutput(data);
}

decompile it, and use this block to send whatever type of letters to gsheet

image
image

p.s, you need to make this change to make it effective

. matter of two min work

pls refer: METRIC RAT AI2 - Google Sheets - Simple POST and GET Data

1 Like

i think u forgot to done puslish as a web app… OR
check this simple method

everything is explained here. How to send data (vietnamese) to google sheet using kodular - #8 by sugarlesscreator

Share your url link here or messages me and give me access to edit your sheet.
I will check your script.

see, you cannot send data with the code what you have entered in the sheet. Now i have modified it. Kindly deploy it, and try the method i suggest in the previous post. Let me knoe if it is not working for youi

postv.aia (3.5 KB)

Result

I’ve tried using several languages and it works.

please give me the script code

Is it

Got solution or should I

Yups…

If your edit script, save and publish with new version again, and set who has access to the apps to anyone, even anonymous. Copy and paste url to kodular :+1:

Which topic ?

If you are talking about this, it is not closed.

sorry, my network is lagging

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.