I have a view that contains entries from two years and the entries may have the same value in one field: email address. I need to only return unique email addresses. How can I filter so that I get *all* entries (not just newest or oldest) from both years, with no duplicate email addresses?
My educated guess is that you need to work with these:
Where filter = https://formidableforms.com/knowledgebase/frm_where_filter/#kb-add-two-filters-combined-with-or
SQL Distinct = https://www.w3schools.com/sql/sql_distinct.asp
Thank you, Bobby. There's almost *always* a code snippet!
Please login or Register to submit your answer