Hi,
I'm running a flow getting data from D365 F&O. In the Get table-step I'm trying to filter the entity BatchOrderHeaders and want a filtered list where StartedQuantity = ScheduledQuantity.
Example table
| BatchOrderNumber | BatchOrderStatus | ScheduledQuantity | StartedQuantity |
| 1111 | Created | 500 | 500 |
| 1112 | Reported as Finished | 300 | 321 |
| 1113 | Estimated | 320 | 320 |
What I want the query to do is to return the rows from order number 1111 and 1113.
I've tried (without success):
- 'StartedQuantity' eq 'ScheduledQuantity'
- equals(['StartedQuantity'], ['ScheduledQuantity'])


Report
All responses (
Answers (