Hi I am working on creating Power automate cloud flow for Power Up challenge. The flow is failing with the below error.
I am using the code for Variable Start Day :
convertTimeZone(utcNow(),'UTC','GTB Standard Time','yyyy-MM-ddT00:00:00.000Z') and for variable Endof Day:
convertTimeZone(utcNow(),'UTC','GTB Standard Time','yyyy-MM-ddT23:59:59.000Z'). My time zone is Easter Europe. How should i fix this. I undestand that the issue is the time zone.
formatDateTime(convertTimeZone(utcNow(), 'UTC', 'GTB Standard Time'), 'yyyy-MM-ddT00:00:00zzz')
End date
formatDateTime(convertTimeZone(utcNow(), 'UTC', 'GTB Standard Time'), 'yyyy-MM-ddT23:59:59zzz')
The key change is using 'zzz' instead of 'Z', which appends the correct timezone offset (like +03:00)
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.