Hi, I'm currently creating a flow where I try to filter Excel using the filter array. I have successfully run the flow by separating the two filters into one filter for 'less than' and another for 'greater than'. After that, I use the intersection compose. However, I wonder if it is possible to create it into one filter array with multiple conditions. I tried using the formulas below but failed. I hope someone can help. Thanks.
@and(
less(@{item()?['_Start_Date']},@{body('Time_tomorrow')}),
greater(@{item()?['_End_Date']},@{formatDateTime(body('Time_today'),'yyyy-MM-ddTHH:mm:ss.0000000')})
)