Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

unique record list

hi

i'm quite new to QlikView and i have a question about unique records.

I made a table with some personal data. Some names are more common.
I want to make a new table what shows how much unique persons there are in the first table.
I made a table with the expression Count(name) now is my question if it's possible that only the unique names will be showed?

i hope someone can help me.

1 Solution

Accepted Solutions
martin59
Specialist II
Specialist II

Count(Distinct name)

View solution in original post

4 Replies
martin59
Specialist II
Specialist II

Count(Distinct name)

Not applicable
Author

expressio:
IF(Count(name)=1,count(name))

this perhaps could do it.

Not applicable
Author

this solved my problem thx for the fast reply!

Not applicable
Author

Now I got it. You do not want to show only the unique names but all names only once. So Martin did the right thing.