I am new to Power Automate, but based on another community post, I successfully created a flow to automatically copy items created or modified in one Sharepoint List to another in real time.
- When an item is created or modified
- Get Items (Filter: SyncedID eq Body/IDx)
- Condition to create the item in the second list if true or update the item in the second list if false
Works great.
If possible, under Get Items, I want to continue to add another condition that filters out any records where BOTH of the following are true: Column A is not "placeholder" and Column B is not null.
The filter would need to return all records where:
- Synced ID eq Body/ID, Column A is "placeholder" and Column B is not null
- Synced ID eq Body/ID, Column A is not "placeholder" and Column B is null
Is that possible under Filter Query or do I need to research Filter Array? Thanks!