A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
Hello @Edward,
I'd like to gather a little more information so we can narrow down the cause.
Are you seeing the following error when running the flow?
"Flow run failed. Action 'Get_items' failed: Column 'Status' does not exist. It may have been deleted by another user."
If so, Status may be the column’s display name rather than its internal name. Please find the internal name by following these steps:
- Open the SharePoint list.
- Select Settings > List settings.
- Under Columns, select the Status column.
- Check the browser address bar on the column settings page.
- Look for the value after Field= near the end of the URL.
Please share the value shown after Field=. You do not need to share the complete SharePoint URL.
On my side, I found that the internal name was Test. Therefore, I changed the filter query from:
Status eq 'A' or Status eq 'B'
to:
Test eq 'A' or Test eq 'B'
Please try replace Test with the exact internal name shown after Field= on your side. The internal name is case-sensitive, so please copy it exactly as displayed.
If the first query still fails, could you confirm:
- Is Status configured to allow only one selection or multiple selections?
- What exact error appears in the flow run history?
- Was the column originally created with another name and later renamed to Status?
If I have misunderstood any part of the configuration, feel free to clarify. I want to make sure I fully understand the setup before suggesting further steps.
Thank you again for your time and understanding. I really appreciate your patience, and I’m here to help. Looking forward to your response.
If the answer is helpful, please click "Yes". If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in the forum documentation to enable e-mail notifications if you want to receive the related email notification for this thread.