Hi,
I am new Power Apps and was wondering if anyone could help with the following.
I need to create a sign up form for event sessions and the options within those sessions need to have limited spaces available - lets say 15 places. Once all spaces available have been reached it either removes the option or stops users from selecting it. Would anyone be able to help?
For Example:
Session One Options
Session Two Options
Session Three Options
Many thanks
Solved! Go to Solution.
HI @KJC ,
This would depend on your internal logic of the app and on how you store the data, but one thing you could try would be to set a variable OnStart of the app, and use it as a control variable.
You can use the Set function in order to create a variable and insert data into it as such:
Set( VariableName, Value )
The value you could retrieve from you database (e.g. Common Data Service), and increment it whenever a new option is chosen on the form.
If you choose to manage it this way, remember that you would need to update the value in the database after you finish, so you don't lose the data. You can accomplish this using the Patch function as an example.
Let me know if this answer helped you in any way!
Regards,
Ricardo
HI @KJC ,
This would depend on your internal logic of the app and on how you store the data, but one thing you could try would be to set a variable OnStart of the app, and use it as a control variable.
You can use the Set function in order to create a variable and insert data into it as such:
Set( VariableName, Value )
The value you could retrieve from you database (e.g. Common Data Service), and increment it whenever a new option is chosen on the form.
If you choose to manage it this way, remember that you would need to update the value in the database after you finish, so you don't lose the data. You can accomplish this using the Patch function as an example.
Let me know if this answer helped you in any way!
Regards,
Ricardo
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
162 | |
91 | |
67 | |
63 | |
62 |
User | Count |
---|---|
216 | |
158 | |
96 | |
86 | |
79 |