Skip to content

Instantly share code, notes, and snippets.

View Billybobbonnet's full-sized avatar

Antoine Cordelois Billybobbonnet

View GitHub Profile
@Billybobbonnet
Billybobbonnet / ConcatenateTextAndExportJson.js
Last active February 28, 2025 13:38
ConcatenateTextAndExportJson
function ConcatenateText() {
const ss = SpreadsheetApp.getActiveSpreadsheet();
// Define sheet names
const overviewSheet = ss.getSheetByName("Overview");
const prependSheet = ss.getSheetByName("Prepend");
const datasetsSheet = ss.getSheetByName("Datasets");
const appendSheet = ss.getSheetByName("Append");
const exportsSheet = ss.getSheetByName("Exports");