Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
//global variables can be accessed by the
//main report but not sub-reports
global numberVar MyGlobalNumberVar;
//shared variables can be accessed by all
//reports and sub-reports
//replaces Store and Fetch functions
shared numberVar MySharedNumberVar;
//local variables can only be accessed by
//the current formula
//This allows you to re-use the same variable names
//in your formulas without affecting the results
//in other formulas.
local numberVar MyLocalNumberVar;