Since Macros do NOT actually record the "Find and Replace" action, I am trying to get a script to find and replace certain strings that can be found in several cells. For example; I have a cell containing "Fred and Joe" and I need to get rid of the "and". In another cell, I may have "Fred, Joe" and I need to get rid of the ",".
I have tried the below, but it only works when the cell ONLY contains "AND". I need the script to ALSO replace the value when the cell CONTAINS the "var f":
}
function FandR(){
var sh = SpreadsheetApp.getActiveSpreadsheet();
var ss = sh.getSheetByName("Sheet1");
var f = "and";
var r = ",";
var data = ss.getDataRange().getValues();
Logger.log(data.length);
for (var i = 0; i < data[0].length;i++){
for (var j = 0; j < data.length;j++){
if(data[j][i]==f)
ss.getRange(j+1,i+1).setValue(r);
}
}
}
Following you further clarification, I think what you need is:
You can test it here (you might need to refresh the page after the macro execution, in order to see the modified data)