Hi,
Is it possible to filter a 2D array using the "Filter Array" action?
I have an array, please see below.
[ { "IDNumber": "1", "FullName": "Debbie Lob", "Department": "Finance", "Email": "debbie.lob@example.com" }, { "IDNumber": "2", "FullName": "John Mills", "Department": "Finance", "Email": "john.mills@example.com" }, { "IDNumber": "3", "FullName": "Mary David", "Department": "IT", "Email": "mary.david@example.com" } ]
How can I filter these data? Sample, I would like to get the "FullName" with "IDNumber" equals to "1"? The output should be "Debbie Lob"
These data are stored in an array variable named "NamesArray".
Thanks,
Chng
Solved! Go to Solution.
Hi @ching29,
I have a way to get the value you want.
Use Apply_to_each to iterate over the array and then use to get the properties inside each object.
Initialize two variables, an array, and a value that holds the output.
Traverse the array, get the element with the IDNumber equal to 1, and then take the desired value. Then store it in the String variable and finally output it.
The red part is Expression, not directly populated in the field.
Hi @ching29,
Please check the following doc on Filter array action for a reference:
https://docs.microsoft.com/en-us/flow/data-operations
Besides, hope the following blogs could be helpful:
http://johnliu.net/blog/2018/6/do-group-by-in-flow-with-two-simple-elegant-loops
Best regards,
Mabel
Hi @ching29,
I have a way to get the value you want.
Use Apply_to_each to iterate over the array and then use to get the properties inside each object.
Initialize two variables, an array, and a value that holds the output.
Traverse the array, get the element with the IDNumber equal to 1, and then take the desired value. Then store it in the String variable and finally output it.
The red part is Expression, not directly populated in the field.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
28 | |
27 | |
23 | |
17 | |
10 |
User | Count |
---|---|
59 | |
56 | |
29 | |
27 | |
24 |