Declare variable
Declares a variable to store data while the Flow is executing.
- You can declare as many variables as you want
- A variable can be either
global
orlocal
(default). Alocal
variable can only be used within thescope
it is declared in. Aglobal
variable can be used in the entire Flow, both within Functions and Extension flowcharts. - A variable cannot be referenced unless it is assigned a value. (It will not appear in variable selectors, for example, if you try to use it as an argument to a Function). Note that this is true for both
global
andlocal
variables.