반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Excel
- string
- Kotlin
- array
- c#
- numpy
- Apache
- hive
- 파이썬
- math
- PySpark
- Mac
- Java
- Github
- PostgreSQL
- SQL
- Redshift
- Google Excel
- Python
- PANDAS
- Google Spreadsheet
- dataframe
- google apps script
- matplotlib
- GIT
- list
- django
- Tkinter
- gas
Archives
- Today
- Total
목록openById (1)
달나라 노트
Google Apps Script : SpreadsheetApp.openById (File ID로 spreadsheet 객체 얻기)
Google Apps Script에서 어떠한 App에 대한 조작을 하고 싶을 때에는 기본적으로 해당 App 또는 어떤 파일에 대한 객체를 얻어와야 합니다. 예를 들어봅시다. 어떤 spreadsheet에 어떠한 값을 입력할거라면 값을 입력하기 전에 값을 입력하길 원하는 spreadsheet의 객체를 얻어와야 한다는 것이죠. function myFunction() { var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); ... do something ... } 이때 대표적으로 사용하는 method가 위처럼 getActiveSpreadsheet() method입니다. 보통 저희는 뭔가 조작을 가할 spreadsheet를 켜두고 작업하고, 어떤 spreadshee..
Google Apps Script
2022. 11. 21. 21:48