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: 
Anonymous
Not applicable

ignore all selection in specific chart except on field

Hi Qlikers

I want to Create a straight table (as like as Below image)  that ignore all selections in fields except Branch

in other hand

when I select Branch ,the straight table "always" shows all personnel's information who works in it and not omit any personnel ID and Personnel Name and level.

Untitled.png

5 Replies
Anil_Babu_Samineni

May be this?

Sum({$<[$(=Concat({1<$Field={'Branch'}>} distinct $Field,']=,[')&']=')>} Measure)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
isingh30
Specialist
Specialist

Try this in expression.

= only({<Personnelname = {'*'},Personnelid = {'*'},Level = {'*'}>} Branch)

Thanks.

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Add an expression like this to the table.

Sum({<Personnelname=, Personnelid=, Level=>}1)


Then hide that expression column on the Presentation tab.


-Rob



MarcoWedel

Hi,

another solution might be:

QlikCommunity_Thread_290193_Pic3.JPG

QlikCommunity_Thread_290193_Pic4.JPG

Only({1<Branch=$::Branch>} PersonnelName)

hope this helps

regards

Marco

Anonymous
Not applicable
Author

I use this formula  as expression (mix of Marco and Rob solution) in straight Chart

=sum({1<level=,personnel id=,personnel name=,branch::$ branch>}1)

Thanks