emmtte / list

Google Sheets automatic creation with Google Apps Script (GAS) for managing a cryptocurrency tracking spreadsheet with multi exchanges

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

onOpen -> balance

krasnopv opened this issue · comments

var entries = [{ name : "Update Portfolio", functionName : "balance" }];
Where is this function balance() in js Files? Maybe there should be another function in Menu?

Thanks and updated

function onOpen() {
  var sheet = SpreadsheetApp.getActiveSpreadsheet();
  var entries = [{ name : "Update Portfolio", functionName : "balnew" }];
  sheet.addMenu("Cryptos Tools", entries);
};