I tried to get the value of a range and than remove all points from the cell. var FILE = SpreadsheetApp.openById("xyz"); var CONTENT = FILE.getSheetByName("Sheet1"); var A1 = CONTENT.getRange("I17").getValue(); A1. replace(".", ""); It gives me that can't find the replace function. Is there any function in Google Apps Script that allows me to replace the string?
