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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
gpizzetta
Contributor
Contributor

Hidding specifique field in the current selection

Hi

would it be possible to hide some selection in the task barre ?

gpizzetta_0-1757077007935.png

The use case is the following

For language I have a reduction linked to the user. Admin can choose the langage but most uses can only use the one selected for them It does not need to show in the task barre

Gilles

 

 

 

 

Labels (2)
2 Solutions

Accepted Solutions
hugo_andrade
Partner - Specialist
Partner - Specialist

Hi @gpizzetta , you can hide the fields using Hide Prefix.

So you can set a variable:

SET HidePrefix = '';

If you only want to hide a single field, you could set it on the variable:

SET HidePrefix = 'langue';

If you want to hide multiple fields, you can set the variable to something more generic and rename your fields.

SET HidePrefix = '_';

Renaming Language_Language and applying SET HidePrefix = '_' would keep it applied in the background but invisible to end users

Live and Breathe Qlik & AWS.
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

View solution in original post

Vegar
MVP
MVP

Hi @gpizzetta 

As @hugo_andrade mentions you can use hideprefix to solve this. You can also use HideSuffix with a similar approach, but then you add a pattern in the end of the field name.

A third option is to tag the field explicitly  as hidden in the script , like this:

TAG FIELD your_field WITH $hidden;

View solution in original post

3 Replies
hugo_andrade
Partner - Specialist
Partner - Specialist

Hi @gpizzetta , you can hide the fields using Hide Prefix.

So you can set a variable:

SET HidePrefix = '';

If you only want to hide a single field, you could set it on the variable:

SET HidePrefix = 'langue';

If you want to hide multiple fields, you can set the variable to something more generic and rename your fields.

SET HidePrefix = '_';

Renaming Language_Language and applying SET HidePrefix = '_' would keep it applied in the background but invisible to end users

Live and Breathe Qlik & AWS.
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

Vegar
MVP
MVP

Hi @gpizzetta 

As @hugo_andrade mentions you can use hideprefix to solve this. You can also use HideSuffix with a similar approach, but then you add a pattern in the end of the field name.

A third option is to tag the field explicitly  as hidden in the script , like this:

TAG FIELD your_field WITH $hidden;

gpizzetta
Contributor
Contributor
Author

I tested both solutions and both worked

I choosed the TAG FIELD solution so I dont have to rename my fields that are already used in varables

Thanky you