I have have a flow using SharePoint - Get Items.
I'd like to filter the resulting items by a variable list of item IDs and then output the filtered result to a single csv table (which will be emailed). Neither the Odata query abilities of Get Items nor the Filter Array action appear to allow this.
Is this possible?
I could of course use an Apply to Each on the array and Get Items separately for each ID, but how would I combine them into a single csv table?
Example:
Sharepoint list:
ID ...other columns
___
1
2
3
4
5
ID Array: [1,3,4]
Expected CSV table:
ID ...other columns
___
1
3
4