ExportFilteredTickets.Run(Filter(Tickets,
And(
Or(
IsBlank(dpStartDate.SelectedDate),
DateCreated >= dpStartDate.SelectedDate),
Or(IsBlank(dpEndDate.SelectedDate), DateCreated<=dpEndDate.SelectedDate),
Or(IsBlank(drpStatus.Selected.Status),Status = drpStatus.Selected.Status),
Or(IsBlank(drpSortByUnit.Selected.SASUnits), SAS_Unit = drpSortByUnit.Selected.SASUnits))),User().Email);
Notify(
"Export process started. You'll receive an email once completed.",
NotificationType.Success, 3000);
I am getting the error that says: Invalid argument type (Table). Expecting a text value instead. "ExportFilteredTickets" flow is using the powerApps automate.