DataView - Find duplicate values

Hi, is there a way to find duplicate values using DataView? For example site links?

You need to give us a concrete example to better understand your question.

For example I have a table created using the dataview plugin and now I want to filter out only the duplicated values using the URL of the site like on the picture bellow. So I don’t have to search for them manually.

If you have only one value in URL field, then you can start with this:

TABLE WITHOUT ID rows.file.link AS File, Link
WHERE URL
GROUP BY URL AS Link
WHERE length(rows.file.link) > 1

EDIT: or, at the end, using only WHERE length(rows) > 1

It works! Thank You :grin:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.