Hai, i have a question, im looking for this solution almost a week and cant find an answer for this. Please help me.
My gallery code:
Sort(
Filter(
ReportDetailsTable,
(StartsWith(StaffEmail, SearchInputBox.Text) ||
StartsWith(ID, SearchInputBox.Text)) &&
Status.Value = "Pending" &&
Category.Value = 'Dropdown category'.Selected.Value
),
Switch(
varSortColumn,
"SubmissionDate", 'Submission Date'
),
varSortDirection
)
my dropdown code:
Distinct(ReportDetailsTable,Category.Value)
The problem: I cant add "ALL" Value in the dropdown list, which will show all items = pending status only, in the gallery. Please help..