HTTP ERROR 500
HTTP ERROR 500

Reputation: 67

How to open a google sheets spreadsheet at a specific row?

I have a google sheet with a column that contains the dates of the year. It is used as a planning. Using conditional formatting, the date of today is coloured green. It would be nice to always open the spreadsheet at this specific row, when the document is loaded. Is this possible using Google Apps Script or using another Google Sheets setting?

Upvotes: 0

Views: 455

Answers (1)

Cooper
Cooper

Reputation: 64040

Try

Sheet.getRange(row,1).activate()

Upvotes: 2

Related Questions