반응형
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
- numpy
- dataframe
- array
- Github
- django
- Redshift
- Python
- string
- PostgreSQL
- google apps script
- SQL
- 파이썬
- Tkinter
- matplotlib
- list
- Mac
- Apache
- Java
- Kotlin
- Google Excel
- Excel
- hive
- math
- GIT
- c#
- PySpark
- PANDAS
- Google Spreadsheet
- gas
Archives
- Today
- Total
목록GoogleExcel (1)
달나라 노트
Google Apps Script : getRange, getValues (셀 선택하기, 셀의 값 얻어오기)
getRange method는 특정 셀 객체를 얻어와줍니다. getValues method는 특정 셀 객체로부터 해당 셀에 담겨있는 값을 얻어와줍니다. Syntax - getRange getRange(cell_adress); getRange(row, col); getRange는 2종류의 형태로 사용할 수 있습니다. 먼저 A1, C10 같이 흔히 Excel에서 다루는 셀의 주소를 전달하면 그 주소의 셀 객체를 얻어와줍니다. 다른 방법은 row 번호와 column 번호를 이용하는겁니다. 구글 시트를 보면 위와 같습니다. Row 번호는 1, 2, 3, 4, 5, ... 등과 같은 자연수로 매겨져있습니다. Column 번호는 A, B, C, D, E, ... 등과 같은 알파벳 대문자로 매겨져 있습니다. Goog..
Google Apps Script
2022. 6. 4. 14:03