How to expose the distinct filter in views

i was wondering if there by any chance is possible to implement an exposed filter in views that either sets the SELECT DISCTINCT() on or off. Does anyone know if that is possible?

Upvotes: 1

Views: 674

Answers (1)

Sebi
Sebi

Reputation: 8993

No, this is not possible, because distinct is not a filter but a setting on the root of the view you are creating.

Upvotes: 1

Related Questions