Hello, I have a timer function in PowerApps. It has a custom API from d365 instance. There is a parameter control in D365 which stops the timer exactly at midnight based on the server timing[GMT timezone] of d365.
Now here is the scenario. When I start the timer[india timezone] say at 9pm , the timer is stopped at 5:30AM [india time] which is 00:00 midnight based on server time.
I want the timer to stop exactly at midnight based on the user's timezone and not server time..
Is it possible to achieve ?
Current behavior : timer started at xx:xx hours- stops at 5:30am[server time]
expected behavior : timer started at xx:xx hours- should stop at 00:00 midnight[based on user timezone ]
function : If(ThisItem.Running = 0, Text(ThisItem.StartDateTime, "[$-en-US]mmm dd yyyy hh:mm:ss") & " - " & Text(ThisItem.EndDateTime, "[$-en-US]mmm dd yyyy hh:mm:ss"),