@Corissandageri
Use this code in the OnSelect property of your button
Set(myPurchaseOrderNum, Value(TextInput1.Text) + 1);
Set(myPurchaseOrderReset, true);
Set(myPurchaseOrderReset, false);
Put this code in the Default property of your text input
myPurchaseOrderNum
And also this code in the Reset property of the text input.
myPurchaseOrderReset
Now when you click the button it will increment the number you input automatically.
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."