Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Karthick30
Creator
Creator

Filters visual Issue

Hi Team,

 I have 2 tables which was joined by using primary Key(Employee Number).

In one of the filter , I am using if condition like below

Karthick30_0-1652078455995.png

Due to this , If I am selecting any of the field in that filter, I am seeing all 3 selections in filter area.

Karthick30_1-1652078567329.png

End users don't want to see multiple filters in top area. 

Same Issue is there for KPI and its detailed info Page. I have 5 KPI's . Each KPI is redirected to one common table. by clicking on anyone KPI , its redirecting to that table with all filters applied on top. Any way to fix it please

 

Labels (1)
1 Solution

Accepted Solutions
vchuprina
Specialist
Specialist

Hi,

You can use HidePrefix in your script, at the start of your script add the following variable

set HidePrefix='_' ;

https://help.qlik.com/en-US/qlikview/May2021/Subsystems/Client/Content/QV_QlikView/Scripting/SystemV...

After this rename fields that shouldn't be visible in the selection bar and reload the application

For instance

Invalid as _Invalid 
AccountStatus as _Account Status

After reloading selection in fields that names start by _ will be invisible in the selection bar.

Please remember that after reloading you should update your condition and other expressions where you use renamed fields

Regards,

Vitalii

Press LIKE if the given solution helps to solve the problem.
If it's possible please mark correct answers as "solutions" (you can mark up to 3 "solutions").

View solution in original post

2 Replies
vchuprina
Specialist
Specialist

Hi,

You can use HidePrefix in your script, at the start of your script add the following variable

set HidePrefix='_' ;

https://help.qlik.com/en-US/qlikview/May2021/Subsystems/Client/Content/QV_QlikView/Scripting/SystemV...

After this rename fields that shouldn't be visible in the selection bar and reload the application

For instance

Invalid as _Invalid 
AccountStatus as _Account Status

After reloading selection in fields that names start by _ will be invisible in the selection bar.

Please remember that after reloading you should update your condition and other expressions where you use renamed fields

Regards,

Vitalii

Press LIKE if the given solution helps to solve the problem.
If it's possible please mark correct answers as "solutions" (you can mark up to 3 "solutions").
Karthick30
Creator
Creator
Author

perfectly worked. Thanks much