can you ping me to resolve your prob
please help me
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 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 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
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 decode text .
Ok let me create a new script for same sheet
its compulsory