Hello,
I have a list with a data expression that correctly returns the count of various sample_types. I'd like to also return two non grouped fields, site_name and sample_date. I don't need statistics on them. They wouldn't be used for display, but only to allow other elements to filter by either of them.
I'm not sure this can be done; it can't in SQL, afaik, due to the underlying set theory. If I add them to the GroupBy clause, I get every unique combination of all three fields, which I don't want. Is there a way to accomplish this somehow? If not, that would be good to know as well. Thanks.