Hi
I set up a flow that will send out reminders based on items in my list.
Currently there's like 15 items in this list... but the list will grow.
However... If a reminder is triggered now every 7 days or same day as the "start date" it will send out a reminder for EVERY item on the list (even those that are in the future)
Below here I give you my Flow that I somewhat copy pasted from another Flow and it might have an faulty setup in it?
Get Items

Convert time zone

Filter Array

@Or(
equals(addDays(item()?['Startdatum'], mul(int(string(coalesce(item()?['RemindMeXDaysBeforeExpire'], 9999))), -1), 'yyyy-MM-dd'), body('Convert_time_zone')),
equals(addDays(item()?['Startdatum'], -1, 'yyyy-MM-dd'), body('Convert_time_zone')),
equals(addDays(item()?['Startdatum'], -7, 'yyyy-MM-dd'), body('Convert_time_zone'))
)
Apply to each

Thank you!