Hello jesp8789,
This should be possible. I assume you have an application with an EditForm control (EditForm1 for example) that is bound to your Excel file. If so then try the following:
1. Click on the form data card that contains the Toner Count field. The card should have a Text Input control that displays the Toner Count value. Note the data card name from the Advanced Panel on the right (for example Toner_DataCard2)
2. Select the Screen that contains your form (for example EditScreen1)
3. Set EditScreen1.OnVisible = UpdateContext({count:Toner_DataCard2.Default}) Here the Toner_DataCard2 is the card name from step 1 and EditScreen1 is the screen name. Those may be different in your case.
4. Select the card again and unlock it from the Advanced Panel (the lock icon that says "Unlock to change properties)
5. Select the Text Input control that displays the Count value. Its default value must be set to something like "Parent.Default". Set it to count (the value from step 3):
6. Add a button Control to the same card. Set Button.Text = count. Now yhou should have a Text Input control and a Button control that show the same value
7. Set Button.OnSelect = UpdateContext({count: count - 1});SubmitForm(EditForm1)
Now, clicking on the button should decrease the count value and submit the changes in one step. Note that you could hide the Text Input control and style your button as you whish.