Just learning PowerApps so forgive me, really basic question.
I have an app that is connected to an excel file and works fine.
I have a field (OrderedValue) with a numeric value and want to increment that value with a button on the Edit Form. I added the button and set the button like this: UpdateContext({varOrdered: OrderedValue.Text + 1}) and set the Default on OrderedValue to varOrdered. This works fine once I press the button and updates the correct cell in the excel file.
The problem is when the form loads the OrderedValue field is blank and I need it populated with the current value of the excel form to start off with. I know exactly why this is not working (because I set the Default to a blank var) but not sure of the correct way to do this 🙂
Thanks, Scott