3
Reply

What are the different Variable types in PowerApps

Pramod Bhosale

Pramod Bhosale

2y
2.5k
0
Reply

Most basic question asked by interviewer to Power Platform candidate

    For reference: https://learn.microsoft.com/en-us/power-apps/maker/canvas-apps/working-with-variables

    Global Variable
    Context Variable
    Collections

    PowerApps supports several types of variables:

    1. Global Variables: Accessible across the entire app, holding various data types like text, numbers, and tables. Created using the Set() function.
    2. Context Variables: Limited to a specific screen, used for passing values. Created using the UpdateContext() function.
    3. Collections: Tables that can be modified and saved locally. Created using Collect() or ClearCollect() functions.
    4. Named Formulas: Not a traditional variable but a way to reuse formulas.
    5. Temporary Variables: Used within specific functions like With().