Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomoyanakano/add-row-from-csv
π GAS project for Google Sheet Function which enable to add values to row from csv
https://github.com/tomoyanakano/add-row-from-csv
clasp csv google-app-script spreadsheet typescript
Last synced: about 3 hours ago
JSON representation
π GAS project for Google Sheet Function which enable to add values to row from csv
- Host: GitHub
- URL: https://github.com/tomoyanakano/add-row-from-csv
- Owner: tomoyanakano
- Created: 2022-05-12T06:38:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-29T04:37:57.000Z (over 2 years ago)
- Last Synced: 2024-07-30T20:18:49.793Z (6 months ago)
- Topics: clasp, csv, google-app-script, spreadsheet, typescript
- Language: TypeScript
- Homepage:
- Size: 124 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Add row values to Google Sheets from csv
This repo is GAS project for Google Sheet Function which enable to add values to row from csv# Problem
When you would like to import data to Google Sheet form csv, you often use `importData` Function.
But, this function is not useful when you would like to import big data because of causing maximum size error.# Solution
This GAS script enable to import data and write value down to sheet.
also, you can set key in order to disable duplicating.# Usage
1. index sheetset these values to A - C column on index sheet
- SheetName
- Csv url
- keyColumnIndex2. make sheet
Create a sheet with the same name as described in the index sheet.3. run main function
You can confirm write csv's values down to the sheet.