How to read Environment Variables in a PowerApp?

Viewed 778
1 Answers

There are two steps to solve this:

  1. Add the "Environment Variables Values" CDS Entity to you App's data source
  2. Set the value of the text of the label to be:

    LookUp('Environment Variable Values', 'Environment Variable Definition'.'Schema Name' = "test_environment_data").Value

Source of the solution: https://www.youtube.com/watch?v=DxjwpqcwI_Y

Related