I have a strange and specific issue that is making the value of my variable 0 no matter what number is written in the text box it is coming from. There are a few layers to this and I will explain below, any help is appreciated.
In the OnStart property of the App, I have a variable declared as this:
Set(varIncrement, Value(Last(DowntimeDB).Title))
This variable is then assigned to the text input "txtNumber_3" as Value(varIncrement).
Upon clicking a button, varIncrement increases by 1 value using this code:
Set(varIncrement, varIncrement + 1)
The problem begins here. I am trying to create a new variable from the value inside txtNumber_3 for another screen, the code is:
Set(varExtraIncrement, txtNumber_3.Text)
When I try to assign this new variable to a new text input, the value is always 0 no matter what. Am I doing something wrong throughout this whole process of variable overriding? Again, any help would be appreciated as I'm stuck!
Thanks.