My apologies for the insane question but is it possible to have something like:
var data = ss.getSheetByName("info").getDataRange().getValues();
called as a global (ie, before using any functions) and then having that data var be available to all the functions? My program mainly reads through arrays with the main sheet having over 5k rows with mult columns of info and another sheet having almost 15k rows/mult columns of info.
Was wondering if it would be any saver of time by doing it this way instead of calling it every time the function is called.
I've been using arrays because I hear it's quicker for Google to flip through it find a particular piece of data then it is of Objects, etc. Sorry if I am making ZERO sense here ;)