I've set up this filter in my get items
CompletedDate ge '@{addDays(utcNow(),-10,'yyyy-MM-dd')}' and OData__x0033_MonthCheck_x003f_ eq 'true'
(tried without quotes on the true part as well)
CompletedDate ge '@{addDays(utcNow(),-10,'yyyy-MM-dd')}' - this part of the query works and get the 2 results, good.
Here is where I have the problem
and OData__x0033_MonthCheck_x003f_ eq 'true'
So in my SP List I have a Yes/No column for 3 month check.
When I remove this part of the filter and run I see this as the output.
"OData__x0033_MonthCheck_x003f_":true,
So why when I put in the Boolean check I get no results.
Not sure this has anything to do with it but the items in this list get created from another flow this SP list is basically an archive of completed jobs.
What's also strange is if I set it to 'false' I also get no results.