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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

urgent

I have load entire table data on dashboard.

What i want now is count of rows where 3 fields are distinct.

How do i get it in qlikview?

6 Replies
Anonymous
Not applicable
Author

More information is needed.

Thanks.

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Something like this?

     =count(distinct Field1 & Field2 & Field3)

Best,

Peter

Not applicable
Author

hi

i think try this

count(distinct Rowno())

*********************

count( Rowno())

*****************************

count(distinct Recno())

Sokkorn
Master
Master

Hi,

Maybe like this: =Count(Distinct <Field1,Field2,Field3> ID)

Can you share more info and what you looking for?

Regards,

Sokkorn

er_mohit
Master II
Master II

In expression side

count(aggr(Rowno(),Field1,Field2,Field3)

or try this

count(distinct<Field1,Field2,Field3>ID)

or

count(aggr(Nodistinct Rowno(),Field1,Field2,Field3)

Anonymous
Not applicable
Author

HI,

Do you want to count the number of rows when the content of the 3 fields are different?

If so, try this:

Creat a table graph with your three fields as dimension and the expression will be:

sum(if(Field1<>Field2 and Field2<>Field3 and Field1<>Field3,1,0))

The total of this expression will be the count you are looking for