@BCBuized/ Community
Good Day,
I am working on an internal project where I have built a power app to track the Tasks for a project. I need to export the filtered gallery data to MS flow via the power apps trigger, wherein I watched several videos but was not able to achieve this as it threw an error I also tried to find posts in the community that do not meet the actual requirement . Kindly please help in achieving this
Below is the code used on the button which creates a collection named FilteredCollection from the Gallery which has to be triggered to Flow.
ClearCollect(
FilteredCollection,
Filter(
'PMIT TRACKER OMC AUT',
IsBlank(ComboBoxAIGroup.SelectedItems.Value) || IsEmpty(ComboBoxAIGroup.SelectedItems.Value) || 'AI Group'.Value = ComboBoxAIGroup.Selected.Value,
IsBlank(ComboBoxTaskStatus.SelectedItems.Value) || IsEmpty(ComboBoxTaskStatus.SelectedItems.Value) || 'Task Status'.Value = ComboBoxTaskStatus.Selected.Value,
'Target Date' >= DPFrom.SelectedDate && 'Target Date' <= DPTo.SelectedDate
)
);
I have followed Reza's video on the web and created the flow as below with Get Items (SP)


Not sure the Odata query used in the filter query is up to the mark also
again on the same select button tried with the following code to trigger the flow which is not working
PMITex.Run(field_3 eq ComboBoxAIGroup.Selected.Value,field_10 eq ComboBoxTaskStatus.Selected.Value, Text(DateFrom_1.SelectedDate,"yyyy-mm-dd"), Text(DateTo_1.SelectedDate,"yyyy-mm-dd"), User().Email);
Kindly request that someone help with this
Thanks in advance 🙂