Hi,
I am having a hard time triggering a flow when filters in my app are blank. A button is connected to a flow which triggers to export a csv file. However, upon checking with flows history, it did not trigger.
It only triggers when I select items in the filters and then unselect it which outputs this in PowerApps
But before, when a filter is blank, it outputs like this where unselected and uninitialized filters are set to null. But this was made with no datasets connected or involved.
What could be the possible cause of this?
Here's my OnSelect expression to the button:
//Export CSV and Get File URL
Set(
csvfileURL,
EXPORTCSV.Run(
{
text: Province.SelectedItems.Value,
text_1: Acqui.SelectedItems.Value,
text_2: ProjectTag.SelectedItems.Value,
text_3: Entity.SelectedItems.Value,
text_4: Type.SelectedItems.Value,
text_5: Muni.SelectedItems.Value
}
).fileurl
);
// Notify User
Notify("The copy of csv file has been sent to your email successfully. Please check your inbox.", NotificationType.Information);
Thanks,