To recycle my code and reduce the complexity, I start to put code snippets in to buttons and call them like functions with Select().
But I recognize that the compiler/engine do not wait for the outcome of the Select() function. Therefore I construct a simple reproducible example with two variables _test and _rand:
User Button:
Select(TestFunction);;
Set(_test; Text(_rand))
User Reset:
Set(_rand; 0);;
Set(_test; "");;
TestFunction:
Set(_rand; Rand())
Label _test:
"_test: " & _test
Label _rand:
"_rand: " & _rand
---
User Button calls TestFunction and overwrite _test with variable _rand, setted inside TestFunction. My expected outcome would be:
_test == _rand
but it's not. _test only get the value of _rand in the next cycle.
How can I get this example to run?
(possible solutions could be a Timer, but I hope for a easier approach)
Solved! Go to Solution.
Thanks for your reply Eelman. I play a bit more with my test scenario and I could easily solve the puzzle with putting everything after the Select() call from the User Button into a TransferFunction:
Changes I made
User Button:
Select(TestFunction);;
Select(TransferFunction)
TransferFunction:
Set(_test; Text(_rand))
In result you will have a lot of buttons, but in my mind it is still better that 500 lines of code inside a 860x640 popup window. At least you could make a function screen for the buttons. Programming in 2020 get real.
Yep, you are correct, PowerApps looks at Select() as one line of code then runs the code following it straight away - not mater how long the code inside the Select() needs to run for. I ran into this issue awhile ago.
My only solution was to add the code that needs to wait for the Select() to finish inside my Select(). You could use a Timer but you would just be guessing the length needed or adding extra User lag time to your app depending on the code complexity.
Unfortunately, PowerApps isn't built to handle functions.
Thanks for your reply Eelman. I play a bit more with my test scenario and I could easily solve the puzzle with putting everything after the Select() call from the User Button into a TransferFunction:
Changes I made
User Button:
Select(TestFunction);;
Select(TransferFunction)
TransferFunction:
Set(_test; Text(_rand))
In result you will have a lot of buttons, but in my mind it is still better that 500 lines of code inside a 860x640 popup window. At least you could make a function screen for the buttons. Programming in 2020 get real.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
180 | |
45 | |
45 | |
34 | |
34 |
User | Count |
---|---|
255 | |
82 | |
78 | |
67 | |
65 |