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
- Python
- JenkinsFile
- javascript
- 三井住友カード
- documentdb
- 체코
- vba
- 熱海
- terraform
- react.js
- 뮌헨
- typescript
- 카마츠루
- 방콕
- 아타미
- pyenv
- Selenium
- 페이페이
- local
- 釜つる
- 미츠이 스미토모
- duckdb
- 태국
- CSV
- 프라하
- PostgreSQL
- PayPay
- 메르페이
- node.js
- codebuild
Archives
- Today
- Total
목록JSON파일 출력 (1)
도쿄사는 외노자
VBA 테이블 내용을 JSON으로 출력
0001 0002 AAA XXX BBB YYY CCC ZZZ 위와 같은 테이블을, 아래와 같은 JSON으로 바꾸어 출력하고자 한다. { "0001" : ["AAA", "BBB", "CCC"], "0002" : ["XXX", "YYY", "ZZZ"] } 코드는 다음과 같다. Sub MakeJson() '테이블이 있는 시트 설정 Dim shtWork As String shtWork = "Work" '시트 활성화 ThisWorkbook.Sheets(shtWork).Activate '변수 정의 Dim fileName, fileFolder, filePath As String Dim isFirstCol As Boolean Dim i, u As Long Dim maxRow, maxCol As Long 'JSON파일 ..
Tech/VBA
2020. 1. 16. 15:55