1.1.0 • Published 2 years ago

spreadsheet-script v1.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

SpreadSheet Script

Demo File:

LOG "This program will copy A1 from test.xlsx to B1 of copy.xlsx"

OPEN test.xlsx
SHEET Sheet1
var test = GET A1

OPEN copy.xlsx
SHEET Sheet1
SET B1 test
SAVE

LOG "DONE"

FREE test

How to run

  1. Download the source code
git clone https://github.com/phoneguytech75/spreadsheet-script/
  1. Compile and run
cd spreadsheet-script
npm i
npm run build
npm start
  1. Run script.s3
> run script.s3

Done!