SOLVED

Power Automate get Items filter query

Copper Contributor

Hello,

 

I need to make a workflow that would send a reminder every 24 hours from Monday to Friday. I have two conditions and one of them is working SendReminder eq 'Start' but how could I check if item wasn't modified for 24hrs+ then send an email?

1 Reply
best response confirmed by LukasSliuzas (Copper Contributor)
Solution
Hi Lukas,

Update your OData filter query to include the Modified date.
For example: SendReminder eq 'Start' AND modified ge 'addDays(utcNow(), 2, 'yyyy-MM-dd)'.

Be sure to use the expression builder for the addDays expression. Add send email action to complete the flow.

I hope this helps.

Norm
1 best response

Accepted Solutions
best response confirmed by LukasSliuzas (Copper Contributor)
Solution
Hi Lukas,

Update your OData filter query to include the Modified date.
For example: SendReminder eq 'Start' AND modified ge 'addDays(utcNow(), 2, 'yyyy-MM-dd)'.

Be sure to use the expression builder for the addDays expression. Add send email action to complete the flow.

I hope this helps.

Norm

View solution in original post