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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
qvqs14
Contributor
Contributor

How to restrict/limit search option data in Qliksense for Table chart

Hi Team,

I want to restrict / limit the data in search option in qliksense.

Please find the below inline description along with attached document.

Data:

Load * Inline [

Code,ID
A,1
B,2
B,3
D,4
E,5

];

I have created a Table Chart in Qlik sense, I need only Where Code = B Data need to Display, I created a
Backend or front end Exp where Backend: if(Code=’B’,Code) as BCode same into the Qlik Dimension
expression I have used.

Output is this:

When I search in the ID field, I am seeing all the records, it should show only where the code B is 2,3

Please help me on the same. Thanks in advance.

 

Note : How we can convert dimension into Measure in qliksense.

Regards,

QVQS14

Labels (4)
2 Replies
BrunPierre
Partner - Master II
Partner - Master II

Replace the ID field with the expression below

=IF(BCode='B',ID)

BrunPierre_2-1667332262479.png

vinieme12
Champion III
Champion III

use  calculated dimensions

ID = Aggr(Only({<Code={'B'}>}ID),ID)

Code = Aggr(Only({<Code={'B'}>}Code),Code)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.