Hello @jv123
Where and how are you initializing the variable? Variable values are initialized/updated when a specific event is simulated (examples: OnSelect, OnStart, OnSuccess)
If you want the value to be set when the app is loaded, you should put it in App.Onstart property, like this:

But if you are in developing mode (not play mode), that will not take effect immediately as you need to simulate the Actual App.OnStart to assign a value. It can be done here:

If you did not trigger the property that initializes your value, it will remain null. An example of this would be you set the value on an OnVisible or on an OnClick property, but there was no action yet made to simulate that event, then the value will be null.
Also if you think that the explanation is misleading, scroll down to the bottom of the page so you can give feedback. This will get the attention of Microsoft and update it to something more appropriate.
✔️ | Just in case you my answer helped you solve your problem, please mark/accept this as a SOLUTION. This helps community members if they experience a similar issue in the future. |