Hi @dylandavis09
To create a number input with up and down buttons in Powerapps is to use the following steps:
Create a variable to store the number value. Using the Set function in the OnStart property of the app or the OnVisible property of the screen.
Set(varNumber, 0)
Create two button controls, one for incrementing and one for decrementing the number value. Set their OnSelect properties to update the variable using the Set function.
OnSelect:
Set(varNumber, varNumber + 1)
Increase the value of varNumber by 1 when the button is pressed.
OnSelect:
Set(varNumber, varNumber - 1)
Decrease the value of varNumber by 1 when the button is pressed.
If you have any questions or feedback, please let me know. Have a great day! 😊
-----------------------
PowerYsa Power Platform Enthusiast [LinkedIn] | [Youtube]
I love to share my knowledge and learn from others. If you find my posts helpful, please give them a thumbs up 👍 or mark them as a solution ✔️. You can also check out my [@PowerYSA] for some cool solutions and insights. Feel free to connect with me on any of the platforms above. Cheers! 🍻