Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
ashishpalkar
Creator III
Creator III

SHOW HIDE FIELDS IN CURRENT SELECTION BOX

Hi

How to SHOW HIDE FIELDS IN CURRENT SELECTION BOX? Is there any workaround?

Thanks in advance.

11 Replies
settu_periasamy
Master III
Master III

Maybe try this

TAG FIELD fieldname  with '$hidden';

NareshGuntur
Partner - Specialist
Partner - Specialist

using HidePrefix/HideSuffix

Not applicable

In the script define the HidePrefic like below:

SET HidePrefic = '_' ;

So all the fields starting with '_' wille be treated as the System Fields and ignored in the current selections box.

ashishpalkar
Creator III
Creator III
Author

Thanks for updates, but i am looking for fields which are hidden to be showed in the current selection box..

satishkurra
Specialist II
Specialist II

Hi

Please use the below in edit script window

SET HIDEPREFIX='%';

LOAD * Inline [

%Product,Sales

Apple,100

Nokia,200 ];

Thanks

Satish

jonathandienst
Partner - Champion III
Partner - Champion III

One of the main reasons for hiding a field is so that it does not show in current selections. So no, there is no way to display hidden fields in a current selection box.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
tresesco
MVP
MVP

This might not be possible using Current Selection Box. However, you can try to create your own space of current selection values in a different manner. You can use GetFieldSelections(hiddenField) to display the values in a text box or so. You may refer:Current Selection Alternatives

jagan
Luminary Alumni
Luminary Alumni

Hi,

In that rename the column names so that it won't hide in the Current selections.

For example

SET HIDEPREFIX='%';

LOAD * Inline [

%Product,Sales

Apple,100

Nokia,200 ];

SET HIDEPREFIX='%';

LOAD * Inline [

%Product,Sales

Apple,100

Nokia,200 ];

Now %Product won't display in Current selections if selected, now rename %Product to Product to display in Current Selections box.

Hope this helps you.

Regards,

Jagan.