-
Notifications
You must be signed in to change notification settings - Fork 0
Filter Array Step
Brad Cannell edited this page Jan 28, 2023
·
1 revision
We have used this step to filter my list of planner tasks.
We've needed to use Advanced Mode
for some filtering operations. Here are some examples:
- To filter for tasks that are not complete:
@not(equals(item()?['percentComplete'], int(100)))
- To filter for tasks in a specific bucket:
@equals(item()?['bucketId'], '_KbUQquhCEqEEQ7bPlEOD2QAGz1F')
- To combine both filters:
@and(not(equals(item()?['percentComplete'], int(100))),equals(item()?['bucketId'], '_KbUQquhCEqEEQ7bPlEOD2QAGz1F'))
- Home
- Power Autmate Project Board (cmd + click)
- Development Project Board (cmd + click)
- Style Guide