Hello, I have a Filter Query in a Get Items action that I just can't get to work. I've spent hours searching for a solution and still no go. The Get Items action is searching a SharePoint list for items that have a date field ("Approved") empty and and lookup field ("ProjectStatusValue") that is equal to "Active". I can get records if the filter query is just "Approved eq null" but when I try "Approved eq null and ProjectStatusValue = 'Active'" the query fails with the error "The expression "(Approved eq null) and (ProjectStatusValue = 'Active')" is not valid. Creating query failed.". I tried one suggest which was to look at the output from the first query that worked and found the following in the data returned.
"Project_x003a_ProjectStatusValue":{"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":12,"Value":"New"From there I tried multiple variations based on things I've read. Below are some examples of things I've tried. None work. What am I missing. Kurt
I TRIED:
Approved eq null and Project/ProjectStatusValue = 'Active'
Approved eq null and ProjectStatusValue = 'Active'
Approved eq null and Project/ProjectStatusValue/Value = 'Active'
Approved eq null and Project/ProjectStatusValue = 'Active'
Approved eq null and Project_x003a_ProjectStatusValue = 'Active'
(Approved eq null) and (Project_x003a_ProjectStatusValue = "Active")
and several other variations.