Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Count of Selected

Hi Guys ,

Please refer to image , now i want to have a count of values selected from the ListBox

tt.PNG.png

thanx in advance

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

count ( distinct %Dimensions )

View solution in original post

4 Replies
Anonymous
Not applicable
Author

count ( distinct %Dimensions )

MK_QSL
MVP
MVP

=GetSelectedCount(%Dimensions)

Anonymous
Not applicable
Author

Hi,

Try

Count(Distinct %Dimensions). It will give you distinct count of %Dimensions irrespective of the frequency.

When we try Count(Distinct GetFieldSelections (%Dimensions)), it will give count as only 1, if you remove Distinct here, it will provide count besed on frequency. So

Count(Distinct %Dimensions) should work in your case.

Regards,

Nita

Anonymous
Not applicable
Author

Thanx Guys it worked guess i was a bit stupid there