I am using a simple Odata filter query in my Sharepoint Get Items connector. In my sharepoint list, there are only 3 dropdown values in my "Status" column. These values are either "Completed", "Not started", or "Ongoing". Using the Get Items connector in Power Automate, I am simply filtering values with "Not started".
I have used the help of Copilot and Microsoft Learn to create the Odata filter query expression. Not of it worked. I have used:
- 'Status/Value' eq 'Not started'
- $filter = 'Status/Value' eq 'Not started'
- ('Status/Value' ne 'Completed') or ('Status/Value' ne 'Ongoing')
- contains(Status/Value,'Not')
- 'Status' eq 'Not started'
- $filter = 'Status' eq 'Not started'
- ('Status' ne 'Completed') or ('Status' ne 'Ongoing')
- contains(Status,'Not')
Please help me resolve this issue. I simply do not know how to resolve this anymore I am losing my mind. This power automate flow is inside the same environment as the Sharepoint List so I don't understand how this is not working.
Please see attached screenshot of the error message.