This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function combineCsv() { | |
| const folder = DriveApp.getFolderById("1MBaI_rGJ6t_loANMAvGpDbr2MeHZwxnn"); | |
| const files = folder.getFilesByType(MimeType.CSV); | |
| let combinedData = []; | |
| while(files.hasNext()){ | |
| let file = files.next(); | |
| let csvData = Utilities.parseCsv(file.getBlob().getDataAsString()); | |
| combinedData = combinedData.concat(csvData); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function combineCsv() { | |
| const folder = DriveApp.getFolderById("1mSJUg80NRhtorSBBOsJylbDYTDDmpHWY"); | |
| const files = folder.getFilesByType(MimeType.CSV); | |
| //Use the files variable | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" | |
| integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" | |
| integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous"> | |
| <style> | |
| //Your CSS goes here | |
| </style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function CALCULATE_DRIVING_DISTANCE(origin, destination) { | |
| var directions = Maps.newDirectionFinder() | |
| .setOrigin(origin) | |
| .setDestination(destination) | |
| .setMode(Maps.DirectionFinder.Mode.DRIVING) | |
| .getDirections(); | |
| var distance = directions.routes[0].legs[0].distance.value; | |
| distance /= 1000; // Convert meters to kilometers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Visualize Google Sheets Data in HTML Charts | |
| * By: bpwebs.com | |
| * Post URL: https://www.bpwebs.com/visualize-google-sheets-data-in-html-charts | |
| */ | |
| function doGet() { | |
| let template = HtmlService.createTemplateFromFile('Index'); | |
| let html = template.evaluate().setTitle('Data Visualization Web App'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function doGet() { | |
| return HtmlService.createHtmlOutputFromFile("Index"); | |
| } | |
| function getChartData(){ | |
| const ss = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Data"); | |
| const data = ss.getDataRange().getValues(); | |
| return data; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Google Sheets copy data from one sheet to another |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Generate Static Google Maps in Google Sheets - Add paths |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Generate Static Google Maps in Google Sheets - Add distinct colors and labels to markers |