I have a DAX statement and I run it inside SSMS.
my original statement is:
evaluate(filter('rptLoan', [RemainingDays] <= 10))
and it works file. I want to add another criteria as below
evaluate(filter('rptLoan', [RemainingDays] <= 10 and [CloseDt] <> "2017-01-31"))
but it is not working and I get below error
Query (1, 47) Operator or expression 'AND' is not supported in this context.
Please advise. Thank you.