Variables
Variables covers 4 pages:
Local
Global
Formulas
Collections
1. Local
Local are all local variables scoped to a screen, ie variables set with updateContext({}).
The table covers
Variable (name)
Screen (screen local to)
Count Set (how often value set)
Count Used (how often referenced)
As local can be repeated the variable may appear multiple time, but only ever once per screen
2. Global

Global are all variables used across the app, ie variables set with Set().
The table covers
Variable (Name)
Type (always global)
Count Set (how often value set)
Count Used (how often referenced)
3. Formulas
Formulas covers the Formula parameter on the app (this was a preview feature so maybe missed from some legacy exports).
It covers both variables declared and UDF (user defined functions), due to the flexibility of how this is used the code is shown with no transformation.
4. Collections
Collections are arrays/tables of data stored locally in the app. Collections were stored i nthe data sources file in a solution and had a schema, this has recently changed and they have become untyped like variables.
The table only shows:
Name
Count Used

Last updated