Re: Need some Help with this Vacation list flow i am trying to create
Hi @Anonymous,
Just to double check with an example.
Below are four vacation items in a calendar list in my environment. If I would run the flow today (14/09), you would expect Test1 & Test2 to be retrieved because the Start Time is exactly 5 days from today (14/09 + 5).
But Test3 & Test4 are not retrieved because those haven't got a Start Time exactly 5 days from today.

If this is what you want can you configure the condition action like below.
1. Choose a value in the left Condition action field. Make sure you select the Expression tab. Paste in the expression below and press Ok.
formatDateTime(items('Apply_to_each')?['EventDate'], 'yyyy-MM-dd')

2. Select the correct operator from the dropdown list. In this case it should be is equal to.

3. Choose a value in the right Condition action field. Make sure you select the Expression tab. Paste in the expression below and press Ok.
addDays(utcNow(), 5 'yyyy-MM-dd')

Hopefully this is a bit clearer on how to configure the condition.