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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
beck_bakytbek
Master
Master

help with filter

Hi Folks,

i have the following situation:

my table does look like:

 

idnamevaluetext
1test110aa
2test220aaa
3test330aaaa
4test140b
5test250bb
6test360bbb
7test170c
8test280cc
9test390ccc
10test1100cccc

i tried to implement this expression : Only({<name = {"test1"}>}text), but it does not work

my expected output is field: text: aa, b,c,cccc

i know i can solve this issue in script by clausel where name = 'test1', but i want to know, whether is possible within a chart: pivot, straightable.

Thanks a lot for any and all help

Beck

1 Solution

Accepted Solutions
CarlosAMonroy
Creator III
Creator III

Hi, it does work!

Please see image below: I used the data you posted on Inline table and use a straight table to show the results.

4-21-2017 8-41-26 AM.png

View solution in original post

12 Replies
surendraj
Specialist
Specialist

could you try with..

sum({<name = {"test1"}>}value)

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

Concat(Distinct {<name = {"test1"}>} text, ', ')

Help users find answers! Don't forget to mark a solution that worked for you!
beck_bakytbek
Master
Master
Author

Hi Surenda,

i tried, but it does not work, i want see only text with values: aa, b,c,cccc on the base of name = test1

do you have any idea?

Beck

CarlosAMonroy
Creator III
Creator III

or you can try:

If(name = 'test1',only(text))

beck_bakytbek
Master
Master
Author

Hi Martines,

thanks for your feedback, but it does not work

beck_bakytbek
Master
Master
Author

Hi Carlos, thanks a lot for your feedback

but the same, it does not work

Kushal_Chawda

this expression should work

Concat(Distinct {<name = {"test1"}>} text, ', ')


Please share the sample data and expected output need

CarlosAMonroy
Creator III
Creator III

Hi, it does work!

Please see image below: I used the data you posted on Inline table and use a straight table to show the results.

4-21-2017 8-41-26 AM.png

beck_bakytbek
Master
Master
Author

Thanks a lot Carlos,

i misplaced a charakter , thanks a lot for your help