Hey Guys,
im trying to build a Reminder Flow wich is linked to my Excel Online (Business)

So in this step i Compose my Excel "Date" data into a format wich i can use.
So fine so good, I get every Date I want in an Normal Date format.

This are the Compose actions from top to down :
if(empty(items('ApplyEach_Dates')?['Datum']),'',addDays('1899-12-30',int(items('ApplyEach_Dates')?['Datum']),'yyyy-MM-dd'))
Here im trying to filter the Empty Fields in my Date Row and it should give me the Dates.
formatDateTime(utcNow(),'yyyy-MM-dd')
This one captures the current time
if(empty(items('ApplyEach_Dates')?['Datum']),'',addDays(outputs('ComposeWorkDate'),2, 'yyyy-MM-dd'))
here it gets the Dates from the Date Row again and adds +2 days to it.
So im not sure how i should do my conditions so my Co Workers get an Email 2 Days before the Due Date comes.
Here i tried the Condition :
outputs ('ComposeWorkDate') is less than outputs('Compose')
and
Condition 2:
outputs('Compose_2') is less than or equal outputs('Compose')

I always get the entries with the Co Workes with current Dates
what am i doing wrong here ?
Bg
Scherwin