Hello there, I hope you can help me out here, because i'm completely lost. I have an app in powerapps where i patch a datetime picker to a date time column in sharepoint. It patches ok but there is a 4 hours difference between the hour i submitted in the app and the hour that was patched in the sharepoint. Same thing happens with the submission:Now() part of the code. What am I doing wrong?
If you need it , the code for the OnSelect property of the submit button is this:
Patch(
'TestList2',
Gallery3.Selected,
{
Status: {Value: "Pending"},
'Timestamp':DateValue2_1.Value +
Time(Value(HourValue2_1.Selected.Value), Value(MinuteValue2_1.Selected.Value),0),
Submission:Now()
}
Thanks in advance!