Hi,
I have a gallery with report records on it but currently it is show up as multiple records. How do I show only distinct records?
Below is my formula: It looks at the input search text box for any data, if no data, show everything
If(IsBlank(SearchBox.Text),
SortByColumns('app.database',"cdr_date",SortOrder.Descending),
SortByColumns(Search('app.database',SearchBox.Text,"crew","cdr_ref","service_order","location"),"cdr_date",SortOrder.Descending)).
Secondly, I have another gallery which pulls in the report LxWxD data. How can i filter that gallery so when I select the distinct report in the first one, it will show all the rows of LxWxD data (for example if it has three rows of record for that)
Thanks!