Hello Community,
I'm quite new to PowerApp, and need you help after watching dozens of videos and articles, I still do not have solution.
I have SharePoint list 'Requests' where I have 'Status' column of type 'Choice' (single choose available in SharePoint). In my PowerApp I have tblRequests (table) and cmbStatus (combobox).
cmbStatus Items = Distinct(Requests,'Status '.Value) // ! delegation warning
cmbStatus OnChange= Set(varSelectedStatus,Concat(cmbSelectedStatus.SelectedItems,Value,", "))
So I'm trying to filter my tblRequests based on selected values in cmbStatus with following formula, but get delegation warning:
tblRequests Items = Filter(Requests,StartsWith('Status '.Value,varSelectedStatus)) // ! delegation warning
I would really appreciate you help!