반응형
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 | 29 | 30 | 31 |
Tags
- PANDAS
- Mac
- Apache
- Redshift
- dataframe
- PySpark
- hive
- 파이썬
- google apps script
- array
- string
- SQL
- Github
- django
- math
- Python
- Java
- Excel
- gas
- Tkinter
- c#
- PostgreSQL
- Kotlin
- numpy
- Google Excel
- Google Spreadsheet
- list
- GIT
- matplotlib
Archives
- Today
- Total
목록insertSheet (1)
달나라 노트
Google Apps Script : insertSheet, setName (새로운 Sheet 만들기, 새로운 탭 만들기, sheet 이름 변경하기, 탭 이름 변경하기)
새로운 sheet를 만드는 방법과 sheet의 이름을 변경하는 방법을 알아보겠습니다. 먼저 시트를 생성하는 내용입니다. 현재 시트의 상태입니다. 3개의 시트가 존재하죠. function myFunction() { var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); spreadsheet.insertSheet(2) } - var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); getActiveSpreadsheet() = 현재 active된 spread sheet의 정보를 얻어옵니다. 항상 조작 전에는 spread sheet의 정보를 가져와야 합니다. - spreadsheet.insertSheet(2) insert..
Google Apps Script
2021. 8. 5. 00:34