Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Count(Distinct name)
Count(Distinct name)
expressio:
IF(Count(name)=1,count(name))
this perhaps could do it.
this solved my problem thx for the fast reply!
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.