Hi All,
I want to filter my table based on a dropdown box. I have a dropdown box that has list of distinct Statuses from a SharePoint list 'Requests' (example: Rejected, Approved, Pending). My table also uses the same SharePoint list. The status field in the SharePoint list is a choice column.
I keep getting this error "Incompatible Types for Comparison. These types can't be compared Record : Record" in my table items property code.
I have the following code on the table Items property :
Filter(Requests, Status = drpStatusFilter.Selected.Value)
This is my dropdown code:
Distinct(Requests,Status)
Any help is appreciated