Opens an existing Google Doc by its file ID.
class DocumentApp method .openById()
DocumentApp is the Apps Script service.
.openById() is the method name you will see after a dot in your code.
What it does
Why it's used
- Merge data into a contract or letter stored in Drive.
- Update a doc the user never has to open manually.
Common errors
- Forgetting parentheses on openById. Write DocumentApp.openById(), not DocumentApp.openById or openById by itself.
- Skipping dots between chained calls. Each step needs a dot, like DocumentApp.getActiveDocument().getBody().openById().
- Adding spaces where they do not belong. Write DocumentApp.openById(), not DocumentApp .openById(), DocumentApp.openById (), or DocumentApp . openById().
- Wrong capitalization. Use DocumentApp and openById, not documentapp or openbyid.
2 Snippets using this methods
Explore
Related methods
-
.create()
Creates a new blank Google Doc.
-
.getActiveDocument()
Returns the Google Doc the user currently has open.
-
.appendTable()
Adds a new table to the end of the document.
-
.setText()
Replaces the text content of a document element.
-
.appendParagraph()
Adds a new paragraph to the end of the document.
More Apps Script
3 Better Sheets tutorials
Automate Emails
Automatically Copy Spreadsheet Tab to New File with Values Only, No Formulas
Related blog posts
Written guides about DocumentApp.openById().
What's Better Than Google Sheets?
Nothing is better than Google Sheets. You just need to learn more about the unlimited power of Google Sheets. Functions, Formulas, Apps Script and more.
Read post →How to Send Google Forms Entries Automatically with Apps Script
Google Forms provides basic email notifications for form submissions, but enhancing these notifications with detailed summaries can significantly improve productivity and response management.
Read post →How to reference a different Google Spreadsheet in Apps Script?
Transferring Data Between Cells in Different Spreadsheets
Read post →