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

can you ping me to resolve your prob

1 Like

please help me

1 Like

If there is freely extension available why you use web ?

that extension was decompiled

I used v3 but it didn’t work

I used Google sheet in my 2 apps it’s work fine but there is some features actually bugs :joy: like ( if you use , in your cell it’s consider it a new line .

From what I understand the special characters aren’t getting stored… Right ?

yes, accented characters

No they store well :heart: but don’t use ", "in cell if you want then use replacment block

refer to this

function myFunction() {
function doGet (e) {

var ss = SpreadsheetApp.openByUrl(“KODULAR - Google Sheets”);
var sheet = ss.getSheetByName(“Sheet1”);

addUser (e,sheet);
}

function doPost(e) {
var ss = SpreadsheetApp.openByUrl(“KODULAR - Google Sheets”);
var sheet = ss.getSheetByName(“Sheet1”);

addUser (e,sheet);
}

function addUser (e,sheet) {
var Name = e.parameter.Name;

sheet.appendRow([Name]);
var range = sheet.getRange (1, 1, sheet.getMaxRows (), sheet.getMaxColumns ());
range.setNumberFormat ("@");
}
}

please check it for me

the problem is not in the script its in the way how u post and get text

Uploading: 8.PNG…

Is this your sheet from where you want to get and store data in this same sheet

When you get text use the uri decode block

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: