Eddition is a script that edits Google spreadsheets (the required number, in the desired folder, the same or with the necessary changes).
- save time;
- increase productivity;
- automate document creation.
If you have an array of identical documents, Eddition will help you correct a systematic typo in all documents or make the same change (recolor a column, for example).
Everyone who somehow intersects with Google Sheets in their work.
- Open Google Apps Scripts page.
- Create a new project (or use an existing one), open it.
- In the left panel, select "Libraries - Add Library".
- Google will ask for an identification code (Script ID). Enter this one: 1OwaVl6r1f1dHlsVwDTY0Cfa1cmiM5iMn31rrMtY3rkHS6vTnMwvswSf0.
- Call the functions of this library from your script. There are three functions:
function TryEditFiles(){ var result;
result = Eddition.EditFiles('1Fxewp7dryqcgT_fmv08UQc76RaQpZF8G', 1, 'A2', null, 12);
Logger.log(result); }
function TryEditFilesBulk(){ var result;
var edits = [ {sheet: 1, cell: 'A4', value: 'ASDFG'}, {sheet: 'Sheet2', cell: 'B2', type: 'formula', value: '=Sheet1!A4'} ];
result = Eddition.EditFilesBulk('1Fxewp7dryqcgT_fmv08UQc76RaQpZF8G', edits);
Logger.log(result); }
function TryEditFilesManual(){ var result;
result = Eddition.EditFilesManual('1Fxewp7dryqcgT_fmv08UQc76RaQpZF8G', (spreadsheet) => { const range = spreadsheet.getSheetByName('Sheet1').getRange('B2'); range.setValue('Mechanical'); range.setBackground('green'); });
Logger.log(result); }
For more details please check our Instruction.
To use this script, you will need to have a Google account.
Our team creates fully open-source tools and solutions for developers, designers, and those who teach these subjects. You can help us: share this tool, contribute to it, or donate to us to support future work.