Hey all,
I have a flow in which I create Sharepoint elements based on the latest element in a list.
Basically I start the list by putting in the first entry with start- and endtime and after that I start a flow where I put in a specific number x so that the flow creates x entries with the specific time and +7 days for start- and endtime, so that I get weekly entries with the same hours.
The flow works as expected but the problem is time zone differences when summer time ends. Based in germany at the end of october and in middle of march the time zone changes and the entries are wrong.
As a workaround I would now delete item 17 and all other wrong entries, change the item 16 manually to the correc time and restart the flow, then it works again.

My flow looks like this:


the addDays functions:
addDays(outputs('latest_ELEMENT')?['body/starttime'],7) (Anfangszeit)
addDays(outputs('latest_ELEMENT')?['body/endtime'],7) (Endzeit)

Does anybody have an idea how to fix this?