Any good ideas for emulating/doing select distinct...
# suiteanalytics
w
Any good ideas for emulating/doing select distinct({lineuniquekey}) in a saved search without using summary?
We have two tables where a transaction is parent and both tables have a field for lineuniquekey. The same transaction can exist in both tables but refer to different lines. I need to pull out only the line that where the lineuniquekey is the same. But since there are two joins, I get [the line with info from table A]*[number of lines in table B that are connected to the same transaction]
k
case when {fieldA.joinfield} = {fieldB.joinfield} then 1 else 0 end
as a criteria.