When I use the <domino:dbselect> tag to return values like @DBColumn, it returns duplicate values. When I run this formula in Notes: @DbColumn ( ""; ""; "DBLookup01"; 1 ); it returns a unique list: Category1 Category2 Category3 (the first column is categorized in the Notes view) When I include this tag in my JSP: <domino:dbselect name="sell" datasrc="<%=path%>" view="DBLookup01" displayitem="Category" size="4"> <domino:dbfill target="Category" dbfield="Category"/> </domino:dbselect> <br> Enter a new category: <domino:input name="Category" size="15"/> The select includes: Category1 Category1 Category1 Category2 Category2 Category3 Category3 Category3 How do I use <domino:dbselect> to get a unique list of values from a Notes view for my select control?