Skip to content

Instantly share code, notes, and snippets.

View davedub's full-sized avatar
🏠
Working from home

David Witus davedub

🏠
Working from home
View GitHub Profile
@davedub
davedub / 0-README.md
Created February 3, 2019 17:55 — forked from lstude/0-README.md
Add Indent / Outdent Functionality to Google Spreadsheets

This tutorial demonstrates how to add an "Indent Text" menu item to a Google spreadsheet so you can indent/outdent text.

  • When the "Indent Text" menu item is selected, any cells within a single column selection will be indented by 5 spaces.

  • You can increase or decrease the number of spaces the text is indented by changing the line below so that the "5" is changed to a larger or smaller number (depending on your preference):

newValues.push(['=CONCAT(REPT( CHAR( 160 ), 5),"' + values[i][0] + '")']);