How can i add both/multiple filter array condition into one?
Filter Array 1
@lessOrEquals(item()?['Contract End Date'], variables('Current Date'))
Filter Array 2
@contains(item()?['Client Status '], 'Active')
I tried the below expression in the advance mode but it is not working.
@lessOrEquals(item()?['Contract End Date'], variables('Current Date')),contains(item()?['Client Status '], 'Active')
Logic
I want to filter all dates equal to/Less than today and the client status is Active
Thank you.