There are two types of variables in Power Apps:
- Context variables
Context variables can be used within the same screen only.
Syntax: UpdateContext({varName: "Mayuresh Joshi"}); - Global variables
Global variables can be used anywhere in the app
Syntax: Set(varCountry, "India");
0 Comments