I wanted to automet some text replacement in a Google sheet.
I utilized the record a macro functionality while doing CTRL-H seacrch and replace, but nothing got recorded.
Then I tryed this code:
spreadsheet.getRange('B:B').replace('oldText','newText');
but it does not work, range has no replace method
Should I iterate each cell?