Skip to content

Instantly share code, notes, and snippets.

@shaunmolloy
Last active March 3, 2021 10:36
Show Gist options
  • Save shaunmolloy/3e03839c64df820d6a9b1278e0c7fdeb to your computer and use it in GitHub Desktop.
Save shaunmolloy/3e03839c64df820d6a9b1278e0c7fdeb to your computer and use it in GitHub Desktop.
Trim Text - Google Apps Script
function TrimText() {
var sheet = SpreadsheetApp.getActive();
sheet.getActiveRange().trimWhitespace();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment