More then 3 OR statement

Hi.

I have a flow that needs to start when it is either Sunday, Monday, Tuesday, Wednesday or Thursday.
Is there an easier way to do this then creating two flows with 3 and 2 OR statements?

thanx

Would this work?

image

You could use a card with ‘the day is between…’

By th way, this is the Geeky long variant to have more Or’s: (When you need to check 3 or more conditions with only OR’s and fe the days or dates are not consecutive)

as:
A or B or C or D
is the same as:
Not ( Not A AND Not B AND Not C AND Not D )

Thanks for the suggestions. Works great, saves me a Flow now.