Hello, I can’t seem to figure this portion out! Essentially, in UiPath Apps I have a Table, from Data service, where my STATUS column has a bunch of values.
I want to create a drop down so they can filter by the distinct status, so in the above image for example the drop down would have “PENDING: Document..” , “Sucess! Document Sent..” and “In Progress: Document..”, etc.
Try to use the Group By function instead of DISTINCT. Fetch your data from the Data Service, then apply GroupBy(“STATUS”) to group the data by unique status values. Bind the dropdown to these grouped values, allowing the user to filter the table based on distinct STATUS options.