I have a timer control on a powerapp and want to submit and retrieve its accumulated value to a SharePoint list column. I've looked at Shane Youngs vid here and it gets close but doesn't answer my question.
To clarify:
1. User clicks Timer button while using app.
2. User clicks Save Changes btn
3. Timer value is submitted to SharePoint list column (date/time or just text?)
4. User reopens form and previous time populates the timer (the timer is not reset to 00:00:00 and is set with the SP list columns time).
I'm using a patch to submit the controls of the form to the SPO list and here is the code I'm using so far - this only saves to a text column so is not working as intended:
Patch(
OnGoingCases,
LookUp(
OnGoingCases,
ID = varActualCase
),
{
Time: Timer.Text,
},
MyNotesAttachmentsForm.Updates
);