How do I change the time zone from UTC to CST when I'm in the template "Create a daily summary of Planner Tasks by Bucket"? On the daily report, I want it to show the time that it was complete and this is the current formula I'm using to do that:
if(empty(items('Iterate_through_tasks')?['completedDateTime']),'',formatdatetime(items('Iterate_through_tasks')?['completedDateTime'],'MM/dd/yyyy'))
This is mostly what I need but I need it to be in CST and it is currently showing as UTC. How would I go about doing this? I've tried a few different things but keep getting error messages.
I know there is a way to convertFromUtc but I cannot figure out where in the formula above that it would go.