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
| How to pull data from Google Sheets to HTML table |
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
| Upload files to Google Drive using Google Apps Script Web Apps and save records in Google Sheets. |
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
| /** | |
| * CRYPTO PORTFOLIO TRACKER | |
| * CREATE BY: www.bpwebs.com | |
| */ | |
| const SHEET_NAME = 'Crypto Portfolio'; | |
| const RN = 7; //The row number of the first coin the coins table | |
| function getCryptoUpdates() { |
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
| #Email Google Sheets table to inbox.txt |
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 place markers |
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 |
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
| 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
| 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
| /** | |
| * 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'); | |
OlderNewer